Hello,
I have a problem with the waterfall chart axis. When I tried to set up titles for horizontal and vertical axes I have just the default value - “Axis Title”.
var pres = new Presentation();
var chart = pres.Slides[0].Slide.Shapes.AddChart(ChartType.Waterfall, 0, 0, 700, 300);
chart.Axes.HorizontalAxis.HasTitle = true;
chart.Axes.VerticalAxis.HasTitle = true;
chart.Axes.HorizontalAxis.Title.AddTextFrameForOverriding("Horizontal Axis");
chart.Axes.VerticalAxis.Title.AddTextFrameForOverriding("Vertical Axis");
image.png (7.2 KB)