我的LineChart
包含多个系列,LineSeries
和PlotSeries
,我为图表设置了自定义dataTipFunction
。但是,我只想要显示行系列的数据提示,而不是绘图系列。我尝试从格式化函数返回null
,但只显示一个空框。我还尝试在剧情系列中禁用鼠标事件(通过将mouseEnabled
和mouseFocusEnabled
都设置为false
),但无济于事。这甚至可能吗?
答案 0 :(得分:8)
您可以将*系列的interactive
属性设置为false
<mx:series>
<mx:LineSeries yField="Profit" form="curve" displayName="Profit"/>
<mx:LineSeries yField="Expenses" form="curve" displayName="Expenses"/>
<mx:LineSeries yField="Amount" form="curve" displayName="Amount"/>
<mx:PlotSeries yField="Amount" interactive="false"/>
</mx:series>