Xuni for IOS のドキュメント
凡例
Xuni FlexPie には凡例を表示するオプションがあります。凡例には、円グラフのセグメントに提示されるデータのタイプを表示できます。凡例の位置は、デフォルトでは「Auto」に設定されます。これは、凡例の位置がデバイスの画面領域に依存することを意味します。この場合、円グラフは、デバイス上の利用可能な領域を効率よく占有できます。

borderColorborderWidthbackgroundColor、および labelTextColor プロパティを使用して、FlexPie の凡例をカスタマイズします。さらに、position プロパティを使用して、チャート凡例の表示位置を決定できます。

positionプロパティが Top、Bottom、Left、または Right に、orientation プロパティが Horizontal に設定されており、十分な画面領域がない場合、凡例は自動的に折り返されます。

次の図は、FlexPie コントロール内でカスタマイズされた凡例です。

次のコード例は、これらのプロパティを設定する方法を示します。この例では、「クイックスタート」セクションで作成したサンプルを使用します。

サンプルコード

pieChart.legend.borderColor = UIColor.blueColor()
pieChart.legend.borderWidth = 0.5
pieChart.legend.backgroundColor = UIColor.blackColor()
pieChart.legend.labelTextColor = UIColor.whiteColor()
pieChart.legend.position = XuniChartLegendPosition.Left
pieChart.legend.borderColor = [UIColor blueColor];
pieChart.legend.borderWidth = 0.5;
pieChart.legend.backgroundColor = [UIColor blackColor];
pieChart.legend.labelTextColor = [UIColor whiteColor];
pieChart.legend.position = XuniChartLegendPositionLeft?;
pieChart.Legend.BorderColor = UIColor.Blue;
pieChart.Legend.BorderWidth = 0.5;
pieChart.Legend.BackgroundColor = UIColor.Black;
pieChart.Legend.LabelTextColor = UIColor.White;
pieChart.Legend.Position = Position.PositionLeft;

 

 


Copyright © GrapeCity inc. All rights reserved.