the problem occurs only in the latest version dhtmlxchart, older versions work fine
[code]var cartData = [{“value”:15,“label”:“111”},{“value”:121,“label”:“222”},{“value”:13,“label”:“333”}];
var chart = new dhtmlXChart({
view:“spline”,
container:“chart_container”,
value:“#value#”,
tooltip:{
template: “#value#”
},
item:{
borderColor:“#335900”,
color:“#69ba00”
},
line:{
color:“#69ba00”,
width:3
}
});
chart.parse(cartData, “json”);[/code]