2

Visual Studio 2008、SyncFusion Essential Studio Enterprise Edition、(WinForms) バージョン 7.203.0.20 を使用しています。

折れ線グラフの各線にカスタム色を指定するにはどうすればよいですか?

4

1 に答える 1

5

折れ線グラフの色を設定するには:

this.chartControl1.Series[0].Style.Interior = new BrushInfo(GradientStyle.Vertical, Color.Red, Color.Orange);

ここにヘルプリンクがあります - http://www.syncfusion.com/support/kb/83/How-do-I-set-the-Interior-colors-for-the-chart-series-data-points

個々の接続線を異なる色にしたい場合は、ChartSeries.PrepareStyle イベントを次のように処理する必要があります。

this.chartControl1.Series[0].PrepareStyle += new ChartPrepareStyleInfoHandler(series_PrepareStyle);

void series_PrepareStyle(object sender, ChartPrepareStyleInfoEventArgs args) { //Specifying different Colors for data points using Prepare style event ChartSeries series = sender as ChartSeries; if (series != null) { if (this.chartControl1.Series[0].Type.ToString() == "Line") { if (args.Index == 0) args.Style.Interior = new Syncfusion.Drawing.BrushInfo(Color.Red); else if (args.Index == 1) args.Style.Interior = new Syncfusion.Drawing.BrushInfo(Color.Green); else if (args.Index == 2) args.Style.Interior = new Syncfusion.Drawing.BrushInfo(Color.Blue); else if (args.Index == 3) args.Style.Interior = new Syncfusion.Drawing.BrushInfo(Color.Yellow); else if (args.Index == 4)

http://samples.syncfusion.com/sfwinsamples82/Chart.Windows/Chart%20Types/Line%20Charts/Sample.aspx?args=1

よろしく、ジェイ

于 2010-04-22T21:54:42.807 に答える