Skip to content Skip to sidebar Skip to footer

Dygraphs Second Y Axis Not Being Displayed When Using A Variable As 'y2'

I have the following code to display a graph with two axes. The data is of the form: Date, Value1, Value2 var sg = new Dygraph(document.getElemantById('div'), lGraphData, { lab

Solution 1:

This is a basic JavaScript issue. When string2 appears as a key in an object literal, it means the string "string2", not the value of the string2 variable. You need to create an options object and fill it out in pieces, like so:

var opts = {
    labels: ['Date', string1, string2],
    legend: 'always',
    series: {},
    ylabel: string1,
    y2label: string2
};
opts.series[string2] = { axis: 'y2' };

var sg = new Dygraph(document.getElemantById("div"), lGraphData, opts);

Post a Comment for "Dygraphs Second Y Axis Not Being Displayed When Using A Variable As 'y2'"