0

我在我的网络应用程序中使用 GChart,但找不到任何关于在 X 和 Y 轴上更改文本颜色的信息。我的图表显示在 StackPanel 内的 Horizo​​ntalPanel 中。这是我的 GChart 代码,而不是它的显示位置:

public class ChartTuple extends GChart {
public ChartTuple() {
    super();
    setChartTitle("<b></b>");
    setChartSize(400,300);
    addCurve();
    for (double i = 01.24; i < 14; i++) {
        System.out.println("Adding curve PT");
        getCurve().addPoint(i, i);
    }

    getCurve().getSymbol().setSymbolType(SymbolType.VBAR_SOUTH);
    getCurve().getSymbol().setBackgroundColor("red");
    getCurve().getSymbol().setBorderColor("gray");
    getCurve().getSymbol().setModelWidth(0.5);
    getXAxis().setAxisLabel(
            "<b>Latency Distribution (% objects, time in mm:ss)</b>");
    getXAxis().setHasGridlines(false);
    getYAxis().setAxisLabel("");
    getYAxis().setHasGridlines(true);
    addStyleName("chart-text");
    System.out.println(getCurve());
    System.out.println(this.toString());
    setVisible(true);
} }

非常感谢您

4

1 回答 1

0

以下代码是如何更改 XY 轴标签的颜色。

getXAxis().setTickLabelFontColor("white");
    getYAxis().setTickLabelFontColor("white");
于 2012-09-07T16:07:27.093 回答