Hi,
Hi, I just upgraded my Firefox browser to version 5.0 and I can not see the graphs that previously worked.
The error displayed is:
Error: Uncaught exception: [Exception … “Operation is not supported” code: “9” nsresult: “0x80530009 (NS_ERROR_DOM_NOT_SUPPORTED_ERR)” location: “dhtmlxChart/codebase/dhtmlxchart.js Line: 130”]
This is the script I use:
var data = [
{Minuti: “12465,91”, Servizio: “aaa”},
{Minuti: “17640,54”, Servizio: “bbb”},
{Minuti: “2611,49”, Servizio: “ccc”},
];
var barChart1 = new dhtmlXChart({
view: "bar",
container: "chartbox",
value: "#Minuti#",
label: "#Servizio#",
width: 30,
gradient: true,
border: false,
xAxis: {
title: "Servizio",
template: "|",
},
yAxis: {
title: "Minuti",
}
});
barChart1.parse(data, "json");
Anyone knows the problem?