0

Webアプリで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 に答える