【发布时间】:2013-07-11 08:17:21
【问题描述】:
我正在使用 Shield UI 图表,其中有一个带有条形图和一些数据的图表。
dataSeries: [
{
seriesType: 'bar',
collectionAlias:'Total Visits',
data: [565000, 630400, 743000, 910200, 1170200, 1383000]
},
{
seriesType: 'bar',
collectionAlias: 'Unique Visits',
data: [152000, 234000, 123000, 348000, 167000, 283000]
}
]
图表运行良好,但是当我尝试对范围栏使用相同的数据时,没有显示任何内容。这是为什么?可能是什么问题,因为还有其他图表类型,我只是更改类型并显示数据?
dataSeries: [
{
seriesType: 'rangebar',
collectionAlias:'Total Visits',
data: [565000, 630400, 743000, 910200, 1170200, 1383000]
},
{
seriesType: 'rangebar',
collectionAlias: 'Unique Visits',
data: [152000, 234000, 123000, 348000, 167000, 283000]
}
]
【问题讨论】:
标签: shieldui