我在我的网络应用程序中使用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);
} }
非常感谢
答案 0 :(得分:0)
以下代码是您如何更改X Y轴标签的颜色。
getXAxis().setTickLabelFontColor("white");
getYAxis().setTickLabelFontColor("white");