Note that all these values are split up 2 bytes integer and 2 bytes fractional offset name size contents --- 4 x 4 x pos of upper left corner 8 y 4 y pos of upper left corner 12 dx 4 x-size 16 dy 4 y-sizenotes on implementation:
Title: Chart
Description: 作图类 [动态生成GIF图形]
Copyright: Copyright (c) 2002
Company:
@author WangXian @version 1.2See more examples in Book of Vaadin or the online demos. @see Book of Vaadin @see Vaadin Charts
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script> <script type="text/javascript" src="js/highcharts.js"></script>
<!-- Optionally, add a highcharts theme file --> <script type="text/javascript" src="js/themes/gray.js"></script>
<!-- Optionally, include the highcharts exporting module --> <script type="text/javascript" src="js/modules/exporting.js"></script>
Note that Highcharts supports other JS frameworks besides jQuery for its internal DOM manipulation functionality. So, if jQuery isn't your cup of tea check the installation docs on the Highcharts site for more details.
@author squinn@moxiegroup.com (Shawn Quinn)
@since 1.0.0
Chart
represents the chart feature of the ODF document. Chart
provides methods to get/set chart title, get/set chart data, etc.
@since 0.6
Chart requires an implementation of an engine ( {@link ChartEngine}). The default engine is based on JFreeChart and available in ZK PE and ZK EE.
The model and type must match to each other; or the result is unpredictable. The 3D chart is not supported on all chart type.
type | model | 3D |
---|---|---|
area | {@link CategoryModel} or {@link XYModel} | No |
bar | {@link CategoryModel} | Yes |
bubble | {@link XYZModel} | No |
candlestick | {@link HiLoModel} | No |
dial | @{link DialModel} | No |
gantt | {@link GanttModel} | No |
highlow | {@link HiLoModel} | No |
histogram | {@link XYModel} | No |
line | {@link CategoryModel} or {@link XYModel} | Yes |
pie | {@link PieModel} | Yes |
polar | {@link XYModel} | No |
ring | {@link PieModel} | No |
scatter | {@link XYModel} | No |
stacked_bar | {@link CategoryModel} | Yes |
stacked_area | {@link CategoryModel} or {@link XYModel} | No |
step | {@link XYModel} | No |
step_area | {@link XYModel} | No |
time_series | {@link XYModel} | No |
wafermap | {@link WaferMapModel} | No |
waterfall | {@link CategoryModel} | No |
wind | {@link XYZModel} | No |
Title: WHEX
Description:
Copyright: Copyright (c) 2003
Company:
@author igor @version 1.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|