How do I create and use custom, multi-line string labels as the axis labels for my graph?
The StringAxisLabels class should be used to create multi-line axis labels. Insert the \n new line character to add additional lines to each string used to define the string axis labels. The example below is from the chartaxes.AxisLabelsChart example program. String xstringlabels[] = {“”, “Western”+”\n”+”Sales”+”\n”+”Region”, “Eastern”+”\n”+”Sales”+”\n”+”Region”, “Southern”+”\n”+”Sales”+”\n”+”Region”, “Northern”+”\n”+”Sales”+”\n”+”Region”}; StringAxisLabels xAxisLab5 = new StringAxisLabels(xAxis5); xAxisLab5.setAxisLabelsStrings(xstringlabels,5); xAxisLab5.setTextFont(graph5Font); gWG.