如何访问条形图中的 column/bar 总数?
How can I access the column/bar total in my bar chart?
我们正在尝试将我们的 cfcharts 转换为使用 ZingChart JSON 样式,因为我们想升级到破坏我们所有图表的 CF11。
我目前正在尝试为条形图设置图例。以前我们在 cfchart 中使用这个 xml 样式代码来包含图例中每个条的标签和总数:
<legend><![CDATA[$(rowlabel) Total:$(colTotal)]]></legend>
在我的示例中,条形代表年份,因此图例项目的示例为“2013 Total:34”。
如何使用 ZingCharts 完成此操作?到目前为止,我的图例代码看起来像这样:
"legend":{
"backgroundColor":"#bdc3c7",
"alpha":1,
"borderWidth":0,
"shadow":false,
"borderRadius":10,
"header":{
"text":"Years",
"borderRadius":10
}
}
图例文本实际上来自 series
对象中的 text
属性。
要获得系列的总价值,您可以使用 %psum
令牌。 Here's a live demo using the legend code you provided. 右击 select "View Source" 查看 JSON.
有quite a few tokens at your disposal, and you can even make your own.
我是 ZingChart 团队的一员,如果您在转换图表时有任何其他问题,我们会随时为您提供帮助!
我们正在尝试将我们的 cfcharts 转换为使用 ZingChart JSON 样式,因为我们想升级到破坏我们所有图表的 CF11。
我目前正在尝试为条形图设置图例。以前我们在 cfchart 中使用这个 xml 样式代码来包含图例中每个条的标签和总数:
<legend><![CDATA[$(rowlabel) Total:$(colTotal)]]></legend>
在我的示例中,条形代表年份,因此图例项目的示例为“2013 Total:34”。
如何使用 ZingCharts 完成此操作?到目前为止,我的图例代码看起来像这样:
"legend":{
"backgroundColor":"#bdc3c7",
"alpha":1,
"borderWidth":0,
"shadow":false,
"borderRadius":10,
"header":{
"text":"Years",
"borderRadius":10
}
}
图例文本实际上来自 series
对象中的 text
属性。
要获得系列的总价值,您可以使用 %psum
令牌。 Here's a live demo using the legend code you provided. 右击 select "View Source" 查看 JSON.
有quite a few tokens at your disposal, and you can even make your own.
我是 ZingChart 团队的一员,如果您在转换图表时有任何其他问题,我们会随时为您提供帮助!