我正在尝试在我的饼图中显示数据。如果我的 dataprovide 中有多个字段(例如:EmployeeA、EmployeeB..etc),一切都会很好。馅饼将被分成几块,每块上都有文字。
但是,如果我的数据提供者只有一个字段(例如:EmployeeA)。饼图将显示整个饼图,饼图上没有文字。我想知道是否有任何方法可以在饼图中显示数据文本。非常感谢。
代码:
<mx:PieChart id="piechart1" x="254" y="321" width="367" height="367"
dataProvider="{getHours.lastResult}">
<mx:series>
<mx:PieSeries id="pieSeries" labelFunction="pieFunction"
explodeRadius="0.05" field="EmployeeOverTime" labelPosition="inside"/>
</mx:series>
</mx:PieChart>
//EmployeeOverTime data will show on each pie pieces if I have multiple
//employees in the department but won't show if the department has only one employee.