当前位置: 首页>>代码示例>>Java>>正文


Java BackgroundColor类代码示例

本文整理汇总了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);
}
 
开发者ID:GwtMaterialDesign,项目名称:gwt-material-demo,代码行数:23,代码来源:MaterialCandleStick.java

示例2: setBackgroundColor

import com.googlecode.gwt.charts.client.options.BackgroundColor; //导入依赖的package包/类
public final void setBackgroundColor(BackgroundColor backgroundColor) {
	_this.setBackgroundColor(backgroundColor);
}
 
开发者ID:GwtMaterialDesign,项目名称:gwt-material-demo,代码行数:4,代码来源:MaterialPieChart.java

示例3: setBackgroundColor

import com.googlecode.gwt.charts.client.options.BackgroundColor; //导入依赖的package包/类
public final void setBackgroundColor(BackgroundColor backgroundColor) {
    _this.setBackgroundColor(backgroundColor);
}
 
开发者ID:kiegroup,项目名称:appformer,代码行数:4,代码来源:PieChartOptionsWrapper.java


注:本文中的com.googlecode.gwt.charts.client.options.BackgroundColor类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。