私は Shield UI Chart を初めて使用し、バーを徐々に表示させようとしていますが、うまくいきません。このコードを試してみると、グラフでさえロードされません:
<script type="text/javascript"> $(function () { $("#chart").shieldChart({
applyAnimation: true
{
duration: 1500
},
axisY: {
title: {
text: "Axis y values"
}
},
primaryHeader: {
text: "Sample statistics"
},
dataSeries: [{ seriesType: 'bar',
collectionAlias: 'Series A',
data: [129,258,245,458,455]
}, {
seriesType: 'bar',
collectionAlias: 'Series B',
data: [325,254,145,478,588]
}]
});
});
</script>