Hello, we have a purchased license.
We use Column3D chart, and i noticed that chart render is a little bit different in pdf format/docx format.
For example:
var shape = builder.InsertChart
(
ChartType.Column3D,
widgetSize.WidthPoints,
widgetSize.HeightPoints
);
var chart = shape.Chart;
chart.Series.Clear();
chart.Series.Add("", new[] { "cat1", "cat2" }, new[] { 5.0, 1.0 });
chart.Legend.Position = LegendPosition.None;
Result in docx: Отчет 1 (74).docx (8.6 KB)
Result in pdf: Отчет 1 (23).pdf (18.1 KB)
Pdf report have a legend on axis Z (“Series1”), but docx report doesn’t. How to hide the legend in pdf report?