<< Click to Display Table of Contents >> Navigation: »No topics above this level« TOC : Script API > JavaScript > JavaScript API > Component > Multiplex > Chart > Method >SetChartAreaFigures |
Sets the fill pattern of a chart.
Prototype :
void SetChartAreaFigures
(
string ChartAreaFigures
)
Arguments :
ChartAreaFigures |
refer to ChartAreaFigureConst multiple fill patterns are separated by comma(",") |
Reference :
It works only if the return value of IsShowFigure is true.
Example :
//string
This.SetChartAreaFigures("Horizontal,Vertical,Plus");
//constant
This.SetChartAreaFigures(ChartAreaFigureConst.Horizontal + "," + ChartAreaFigureConst.Vertical + "," + ChartAreaFigureConst.Plus);
Available Events :
OnAddToPage, OnBind, OnEndBind, OnInitialize, OnStartBind
See also :