Note: This palette drawer available for Java only.
Charts provide the following components:
|
Component |
Figure |
|
Area
|
|
|
Bar |
|
|
Column |
|
|
Line |
|
|
Component |
Description |
XAL |
|
Area
|
Inserts an area chart.
|
<chart xmlns="" height="300" width="300" x="20" y="60"> <valueAxis/> <labelAxis/> <content> <series points="100,200,300,400,500" type="area"/> </content> <legend/> </chart> |
|
Bar |
Inserts a bar chart.
|
<chart xmlns="" height="300" orientation="vertical" width="300" x="-30" y="-20"> <valueAxis/> <labelAxis/> <content> <series points="100,200,300,400,500" </content> <legend/> </chart> |
|
Column |
Inserts a column chart.
|
<chart xmlns="" height="300" orientation="horizontal" width="300" x="-70" y="10"> <valueAxis/> <labelAxis/> <content> <series points="100,200,300,400,500" </content> <legend/> </chart> |
|
Line |
Inserts a line chart. |
<chart xmlns="" height="300" width="300" x="10" y="10"> <valueAxis/ <labelAxis/> <content> <series points="100,200,300,400,500" </content> <legend/> </chart> |