本文整理汇总了Java中com.googlecode.gwt.charts.client.options.BackgroundColor类的典型用法代码示例。如果您正苦于以下问题:Java BackgroundColor类的具体用法?Java BackgroundColor怎么用?Java BackgroundColor使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
BackgroundColor类属于com.googlecode.gwt.charts.client.options包,在下文中一共展示了BackgroundColor类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: draw
import com.googlecode.gwt.charts.client.options.BackgroundColor; //导入依赖的package包/类
private void draw() {
JsArrayMixed dataArray = JsonUtils.unsafeEval("[['Mon',20,28,38,45],['Tue',31,38,55,66],['Wed',50,55,77,80],['Thu',77,77,66,50],['Fri',68,66,22,15]]");
// Prepare the data
DataTable dataTable = ChartHelper.arrayToDataTable(dataArray, true);
// Set options
CandlestickChartOptions options = CandlestickChartOptions.create();
BackgroundColor bgColor = BackgroundColor.create();
bgColor.setStroke("#2196f3");
bgColor.setFill("#90caf9");
bgColor.setStrokeWidth(2);
options.setLegend(Legend.create(LegendPosition.NONE));
options.setFallingColor(bgColor);
options.setRisingColor(bgColor);
// Draw the chart
chart.draw(dataTable, options);
}
示例2: setBackgroundColor
import com.googlecode.gwt.charts.client.options.BackgroundColor; //导入依赖的package包/类
public final void setBackgroundColor(BackgroundColor backgroundColor) {
_this.setBackgroundColor(backgroundColor);
}
示例3: setBackgroundColor
import com.googlecode.gwt.charts.client.options.BackgroundColor; //导入依赖的package包/类
public final void setBackgroundColor(BackgroundColor backgroundColor) {
_this.setBackgroundColor(backgroundColor);
}