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