如何根据特定条件更改flex中图表列系列的显示名称For(例如): 如果条件是年份,那么它应该是年份列系列,否则它应该显示月份系列
`<mx:ColumnSeries displayName="YTD" fill="{sc11}" stroke="{s11}" yField="yearGrossCharge"/>
<mx:ColumnSeries id="month_id" visible="false" includeInLayout="false" displayName="Month"
yField="grossCharge"/>
<mx:ColumnSeries id="year_id" displayName="year" includeInLayout="true"
yField="grossCharge"/>`
我已经尝试过month_id.visible =“False”但它不起作用?请给我一些想法...
答案 0 :(得分:0)
图表有一个系列数组属性,你应该删除你不想从这个数组中显示的系列。此行为没有内置支持。