如何使用xchart库设置图表标题位置?

时间:2019-06-14 09:18:12

标签: charts position title

我正在做数据分析研究,我需要使用xchart。这是我制作图表的代码示例。

CategoryChart图表= new CategoryChartBuilder()。width(width).height(height).title(Title).xAxisTitle(xAxisTitle).yAxisTitle(yAxisTitle).build();

    chart.getStyler().setXAxisLabelRotation(90);
    chart.getStyler().setChartBackgroundColor(Color.WHITE);
    chart.getStyler().setLegendPosition(LegendPosition.InsideNE);
    chart.getStyler().setYAxisLabelAlignment(Styler.TextAlignment.Left);
    chart.getStyler().setLegendVisible(isLegendVisible);
    chart.getStyler().setPlotGridVerticalLinesVisible(false);
    chart.getStyler().setXAxisDecimalPattern("#.#########");
    chart.getStyler().setPlotMargin(0);
    chart.getStyler().setAvailableSpaceFill(.5);

CategorySeries series = chart.addSeries(legend,xAxisSet,(List)yAxisSet);

我正在尝试使用xchart将图表的标题位置设置在底部,但我不确定该库是否直接支持该图表。你能指导我怎么做吗?

谢谢!

0 个答案:

没有答案