$("#stock-chart").kendoStockChart({
dataSource: {
data: incomeData
},
title: {
text: showName
},
dateField: "Date",
seriesDefaults: {
type: "area",
},
series:
[{
field: "Open",
name: "1",
color:"blue"
}, {
field: "High",
name: "2",
color: "green"
}, {
field: "Low",
name: "3",
color: "black"
}],
navigator: {
series: {
type: "area",
field: "Open"
}
},
legend: {
position: "bottom",
visible: true,
},
});
}
$(document).ready(createChart);
$(document).bind("kendo:skinChange", createChart);
Code works perfectly. The problem is that everytime when i hover over legend it appears in firebug that n is null. I specify that i don't have any problem with the script just it appears in firebug that n is null. My question is why? I have a problem or is from the Kendo Ui? Please if you can help it would be great.
P.S Sorry for my English is not my main language.