Chart"

From Documentation
Line 128: Line 128:
  
  
<tt>'''Description:''' Denotes user has clicked the component.</tt>
+
'''Description:''' Denotes user has clicked the component.
  
<tt>Use getX(), getY() method to get coordinates.</tt>
+
Use <tt>getX()</tt>, <tt>getY()</tt> method to get coordinates.
  
<tt>Use getArea() method to get the area component which user clicks on.</tt>
+
Use <tt>getArea()</tt> method to get the UUID of the area component which user clicks on.
 +
 
 +
<source lang="java">
 +
void drilldown(MouseEvent event) {
 +
  final String areaid = event.getArea();
 +
  if (areaid != null) {
 +
    Area area = (Area)desktop.getComponentByUuid()
 +
    Messagebox.show(area.getAttribute("entity")+": "+area.getTooltiptext());
 +
  }
 +
}
 +
</source>
  
 
|}
 
|}

Revision as of 10:18, 11 August 2010

Chart

Employment/Purpose

A chart is used to show a set of data as a graph. It helps users to judge things with a snapshot. To use a chart component , developers must prepare a ChartModel and a ChartEngine. Developers also set proper chart type, and the threeD (3D) attribute to draw proper chart. The model and type must match to each other; or the result is unpredictable. The 3D chart is not supported on all chart type.

Example

ZKComRef Chart.png


Type
Model
3D
pie
PieModel
o
ring
PieModel
x
bar
CategoryModel
o
line
CategoryModel or XYModel
o
area
CategoryModel or XYModel
x
stacked_bar
CategoryModel
o
stacked_area
CategoryModel or XYModel
x
waterfall
CategoryModel
x
polar
XYModel
x
scatter
XYModel
x
time_series
XYModel
x
polar
XYModel
x
step_area
XYModel
x
step
XYModel
x
histogram
XYModel
x
candlestick
HiLoModel
x
hilow
HiLoModel
x
<vbox>
     <chart id="mychart" title="Pie Chart Demo" width="500" height="250" type="pie" threeD="true" fgAlpha="128"/>
     <zscript>
         PieModel model = new MyPieModel();
         mychart.setModel(model);
     </zscript>
 </vbox>

Supported events

Name
Event Type
onClick
MouseEvent


Description: Denotes user has clicked the component.

Use getX(), getY() method to get coordinates.

Use getArea() method to get the UUID of the area component which user clicks on.

void drilldown(MouseEvent event) {
  final String areaid = event.getArea();
  if (areaid != null) {
    Area area = (Area)desktop.getComponentByUuid()
    Messagebox.show(area.getAttribute("entity")+": "+area.getTooltiptext());
  }
}

Supported Children

*NONE

Use cases

Version Description Example Location
5.0 Make a Chart fill 100% width in parent panel http://www.zkoss.org/forum/listComment/10761
5.0 Dual axis in Chart http://www.zkoss.org/forum/listComment/8752

Version History

Version Date Content
     



Last Update : 2010/08/11

Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License.