publish
plugins.it2be_word.IWChart info


Servoy Properties Summary
Number height
Boolean legendOverlay
Number legendPosition
String title
Boolean titleOverlay
Number type
Number width


Servoy Methods Summary
IWChartSeries addCategories( String, Array<String>, Array<Number> )
IWChartSeries addDates( String, Array<Date>, Array<Number> )
IWChartSeries addPoints( String, Array<Number>, Array<Number> )
IWChartSeries addPoints( String, Array<Number>, Array<Number>, Array<Number> )


Servoy Properties Details


height
Number  height
Get/Set the width of the chart
Returns
Number  

Supported Clients
SmartClient, WebClient, NGClient


legendOverlay
Boolean  legendOverlay
Get/Set the legend overlay (default true)
Returns
Boolean  

Supported Clients
SmartClient, WebClient, NGClient


legendPosition
Number  legendPosition
Get/Set the position of the overlay
Returns
Number  

Supported Clients
SmartClient, WebClient, NGClient


title
String  title
Get/Set the title of the chart and show
Returns
String  

Supported Clients
SmartClient, WebClient, NGClient


titleOverlay
Boolean  titleOverlay
Get/Set the title overlay (default false)
Returns
Boolean  

Supported Clients
SmartClient, WebClient, NGClient


type
Number  type
Get/Set the type of chart
Returns
Number  

Supported Clients
SmartClient, WebClient, NGClient


width
Number  width
Get/Set the height of the chart
Returns
Number  

Supported Clients
SmartClient, WebClient, NGClient

Servoy Methods Details


addCategories
IWChartSeries  addCategories( String, Array<String>, Array<Number> )
Add data to the series setting categories and values. Make sure that there are as many categories as there are values. Use this when creating a Bar, Column, Doughnut, Line, Pie, Radar or Surface Chart.
Parameters
String  name  the name
Array<String>  categories  the categories
Array<Number>  values  the values

Returns
IWChartSeries  IWChartSeries

Supported Clients
SmartClient, WebClient, NGClient


addDates
IWChartSeries  addDates( String, Array<Date>, Array<Number> )
Add data to the series setting dates and values. Make sure that there are as many dates as there are values. Use this when creating a Area Chart.
Parameters
String  name  the name
Array<Date>  dates  the dates
Array<Number>  values  the values

Returns
IWChartSeries  IWChartSeries

Supported Clients
SmartClient, WebClient, NGClient


addPoints
IWChartSeries  addPoints( String, Array<Number>, Array<Number> )
Add data to the series setting x and y coordinates. Make sure that there are as many x coordinates as there are y coordinates. Use this when creating a Scatter or Stock Chart.
Parameters
String  name  the name
Array<Number>  xValues  the x coordinates
Array<Number>  yValues  the y coordinates

Returns
IWChartSeries  IWChartSeries

Supported Clients
SmartClient, WebClient, NGClient


addPoints
IWChartSeries  addPoints( String, Array<Number>, Array<Number>, Array<Number> )
Add data to the series setting x, y coordinates and bubble sizes. Make sure that there are as many x coordinates as there are y coordinates and bubble sizes. Use this when creating a Bubble Chart.
Parameters
String  name  the name
Array<Number>  xValues  the x coordinates
Array<Number>  yValues  the y coordinates
Array<Number>  bubbleSizes  the bubble sizes

Returns
IWChartSeries  IWChartSeries

Supported Clients
SmartClient, WebClient, NGClient