Hello, I have a purchased license.
I need to set custom colors for chart series, so I do the following:
var shape = asposeBuilder.InsertChart(ChartType.Column3DStacked, 300, 400);
shape.Chart.Series.Clear();
var series1 = shape.Chart.Series.Add("series 1", new string[] { "category 1", "category 2" }, new[] { 1.0, 5.0 });
var series2 = shape.Chart.Series.Add("series 2", new string[] { "category 1", "category 2" }, new[] { double.NaN, 0.5 });
series1.Format.Fill.ForeColor = Color.Red;
series2.Format.Fill.ForeColor = Color.Green;
In .docx format the chart renders correctly: image.png (3.9 KB)
But in .pdf here is a bug: image.png (19.7 KB)