Group: Forum Members
Last Active: 5 Years Ago
Posts: 10,
Visits: 25
|
Hi Team,
I drew triangular area like below :
NPolarChart chart = new NPolarChart(); nChartControl1.Charts.Add(chart);
NPolarAreaSeries area = new NPolarAreaSeries(); chart.Series.Add(area); area.FillStyle = new NColorFillStyle(Color.Red);
area.Angles.Add(90); area.Angles.Add(85); area.Angles.Add(80); area.Values.Add(1000); area.Values.Add(200); area.Values.Add(1000);
NPolarChart chart = new NPolarChart();
nChartControl1.Charts.Add(chart);
NPolarAreaSeries area = new NPolarAreaSeries();
chart.Series.Add(area);
area.FillStyle = new NColorFillStyle(Color.Red);
area.Angles.Add(90);
area.Angles.Add(85);
area.Angles.Add(80);
area.Values.Add(1000);
area.Values.Add(200);
area.Values.Add(1000);
But red color does not apply to triangular area. How can i do this ?
|
Group: Forum Members
Last Active: Last Month
Posts: 3,055,
Visits: 4,055
|
Hi Changmin, We just tested this code and it produced a red triangle as intended with the latest version - what is the version that you're currently using?
Best Regards, Nevron Support Team
|