Reputation: 1070
What does this fiddle for amcharts not render?
var dr_data = [{
"date": "2014-04-01",
"value": 50
}, {
"date": "2014-04-02",
"value": 63
}, {...
Upvotes: 2
Views: 1442
Reputation: 6025
It's because you messed things up in css. First, you set style on "chartdiv" and your div is "chart", and you have an extra } in the middle of css, which makes width and height ignored. It should be:
#chart {
width : 100%;
height : 500px;
font-size : 11px;
}
Upvotes: 2