pieChart にデータを表示しようとしています。データ提供に複数のフィールドがある場合 (例: EmployeeA、EmployeeB など)、すべてがうまく機能します。パイはピースに分割され、各ピースにテキストが表示されます。
ただし、データプロバイダーにフィールドが 1 つしかない場合 (例: EmployeeA)。pieChart は、円グラフ上にテキストを表示せずに円全体を表示します。pieChart 内にデータ テキストを表示する方法があるかどうか疑問に思っていました。どうもありがとう。
コード:
<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.