- GWT Highcharts 教程
- GWT Highcharts - 首页
- GWT Highcharts - 概述
- 环境设置
- 配置语法
- GWT Highcharts - 折线图
- GWT Highcharts - 面积图
- GWT Highcharts - 条形图
- GWT Highcharts - 柱形图
- GWT Highcharts - 饼图
- GWT Highcharts - 散点图
- GWT Highcharts - 动态图表
- GWT Highcharts - 组合
- GWT Highcharts - 3D 图表
- GWT Highcharts - 地图图
- GWT Highcharts 有用资源
- GWT Highcharts - 快速指南
- GWT Highcharts - 有用资源
- GWT Highcharts - 讨论
GWT Highcharts - 3D 柱形图
以下是 3D 柱形图的示例。
我们在 Highcharts 配置语法 一章中已经了解了用于绘制图表的配置。
下面给出了 3D 柱形图的示例。
配置
现在让我们看看执行的其他配置/步骤。
option3D
将柱形图表类型配置为基于 3D。Options3D 设置启用了 3D 选项。
chart.setOptions3D(new Options3D() .setEnabled(true) .setAlpha(15) .setBeta(15) .setViewDistance(25) .setDepth(40) )
示例
HelloWorld.java
package com.tutorialspoint.client;
import org.moxieapps.gwt.highcharts.client.AxisTitle;
import org.moxieapps.gwt.highcharts.client.Chart;
import org.moxieapps.gwt.highcharts.client.Options3D;
import org.moxieapps.gwt.highcharts.client.Series;
import org.moxieapps.gwt.highcharts.client.ToolTip;
import org.moxieapps.gwt.highcharts.client.plotOptions.ColumnPlotOptions;
import org.moxieapps.gwt.highcharts.client.plotOptions.PlotOptions.Stacking;
import com.google.gwt.core.client.EntryPoint;
import com.google.gwt.user.client.ui.RootPanel;
public class HelloWorld implements EntryPoint {
public void onModuleLoad() {
final Chart chart = new Chart()
.setType(Series.Type.COLUMN)
.setOptions3D(new Options3D()
.setEnabled(true)
.setAlpha(15)
.setBeta(15)
.setViewDistance(25)
.setDepth(40)
)
.setMarginTop(80)
.setMarginRight(40)
.setChartTitleText("Total Fruit Consumption, grouped by gender");
chart.getXAxis()
.setCategories("Apples", "Oranges", "Pears", "Grapes", "Bananas");
chart.getYAxis()
.setAllowDecimals(false)
.setMin(0)
.setAxisTitle(new AxisTitle()
.setText("Number of Fruits")
);
chart.setToolTip(new ToolTip()
.setHeaderFormat("<b>{point.key}</b><br>")
.setPointFormat("<span style=\"color:{series.color}\">\\u25CF</span> {series.name}: {point.y} / {point.stackTotal}")
);
chart.setColumnPlotOptions(new ColumnPlotOptions()
.setStacking(Stacking.NORMAL)
.setDepth(40)
);
chart.addSeries(chart.createSeries()
.setName("John")
.setStack("male")
.setPoints(new Number[] {5, 3, 4, 7, 2})
)
.addSeries(chart.createSeries()
.setName("Joe")
.setStack("male")
.setPoints(new Number[] {3, 4, 4, 2, 5})
)
.addSeries(chart.createSeries()
.setName("Jane")
.setStack("female")
.setPoints(new Number[] {2, 5, 6, 2, 1})
)
.addSeries(chart.createSeries()
.setName("Janet")
.setStack("female")
.setPoints(new Number[] {3, 0, 4, 4, 3})
);
RootPanel.get().add(chart);
}
}
结果
验证结果。
gwt_highcharts_3d_charts.htm
广告