How to change the alignment for the the chart categories to the vertical

this is my code:

Shape RADAR = builder.insertChart(ChartType.COLUMN, 300, 300);
Chart chart = RADAR.getChart();
ChartSeriesCollection series = chart.getSeries();
series.clear();
String mark="mark";
String[] categories = new String[] { "others","one","two","three","four","five" };
double[] values = new double[] { 99,90,94,97,98,99};
series.add("mark", categories, values);
Iterator it = series.iterator();
ChartDataLabelCollection dataLabels = null;
ChartDataLabel chartdatalabel = null;
while (it.hasNext()) {
ChartSeries chartseries = it.next();
dataLabels = chartseries.getDataLabels();
dataLabels.clear();
dataLabels.add(0);
dataLabels.get(0).setShowValue(true);

}

how change the 1.png to 2.png

Hi there,


Thanks for your inquiry. Unfortunately, Aspose.Words does not support the requested feature at the moment. However, we have logged this feature request as WORDSNET-13785 in our issue tracking system. You will be notified via this forum thread once this feature is available.

We apologize for your inconvenience.