WebアプリでGChartを使用していますが、X軸とY軸のテキストの色を変更することに関する情報が見つかりません。チャートはStackPanel内のHorizontalPanel内に表示されています。これが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);
} }
どうもありがとうございます