I"ve been looking at this code for 2 hours, maybe because I wrote it myself, but I just can"t see anything wrong
$.get("data.json").done(funtion (data) { <--missing ) after argument list
Charts.hideLoading();
Charts.setOption({
title:{
text:""
},
legend:{
x:"left",
y:"top",
textStyle:{color:"blue"},
data:["","",""]
},
tooltip:{},
xAxis:{
type:"time",
data:[1,2,3,4]
},
yAxis:{
data:[1,2,3,4]
},
series:[
{
name:"",
type:"line",
data:[1,2,3,4]
},
{
name:"",
type:"line",
data:[1,2,3,4]
},
{
name:"",
type:"line",
data:[1,2,3,4]
}
]
});
});