Hello, I have purchased license.
I am creating column chart with long category values, simplified code example:
var shape = asposeBuilder.InsertChart(ChartType.Column, 300, 300);
var chart = shape.Chart;
chart.Series.Clear();
chart.Series.Add("series1",
new[] { "toooooooooo loooooooong categooooooooooory", "toooooooooo loooooooong categooooooooooory2" },
new[] { 4d, 5d });
chart.Series.Add("series2",
new[] { "toooooooooo loooooooong categooooooooooory", "toooooooooo loooooooong categooooooooooory2" },
new[] { 6d, 7d });
And I want to enable ‘Text overlap’ option for axis x labels, because long labels reduce chart size. How can I do It?
Expected result: image.png (7.8 KB)
Actual result: image.png (8.1 KB)