我有以下数据,我需要将其显示为每个月的堆叠图表集群。
该图表每个月应该有两个堆叠的条形图。
- 一个是 Historical_A 和 Historical_B 的堆积条形图
- 另一个是 Monthly_A 和 Monthly_B。
我需要根据此 示例链接显示图表。
我一直在尝试webchart
如下操作 XML,但到目前为止还没有任何结果。
<elements action="" place="Stacked" drawOutline="false">
<morph morph="Grow"/>
<series place="default" index="0" shape="bar">
<paint color="#E48701"/>
</series>
<series index="1" place="stacked" shape="bar">
<paint color="#A5BC4E"/>
</series>
<series index="2" place="default" shape="bar">
<paint color="#1B95D9"/>
</series>
<series index="3" place="stacked" shape="bar">
<paint color="#CACA9E"/>
</series>
</elements>
编辑 1:在 Highcharts 中找到了一个类似的图表。HighCharts 示例