Hi
Currently I have a multi-series line chart using the following data:
and settings:
What I'm wondering is there a way I can use this data format and settings on the Stock Chart? The only example of a multi-series stock chart I could find used data items for the points that had a value for each series.
Thanks
Currently I have a multi-series line chart using the following data:
{
"series"
: [{
"name"
:
"Incident"
,
"data"
: [21, 16, 41, 6]
}, {
"name"
:
"Change"
,
"data"
: [7, 6, 2, 0]
}],
"categories"
: [
"/Date(1367391600000-0700)/"
,
"/Date(1370070000000-0700)/"
,
"/Date(1372662000000-0700)/"
,
"/Date(1375340400000-0700)/"
],
"trendCategories"
: [],
"KendoChartType"
:
"line"
,
"LineWidth"
: 3,
"TooltipDateFormat"
:
"MMM yyyy"
,
"categoryAxis_Type"
:
"date"
}
series: result.series,
categoryAxis: {
categories: result.categories,
majorGridLines: {
visible:
false
},
type:
"date"
}
What I'm wondering is there a way I can use this data format and settings on the Stock Chart? The only example of a multi-series stock chart I could find used data items for the points that had a value for each series.
Thanks