Charts Palette

Note: This palette drawer available for Java only.

Charts provide the following components:

image\img00154.gif

Component

Figure

Area

 

image\img00155.gif

Bar

image\img00156.gif

Column

image\img00157.gif

Line

image\img00158.gif

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

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"
type="bar"/>

 </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"
type="bar"/>

 </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"
type="line"/>

 </content>

 <legend/>

</chart>