EJSC.ScatterSeries.setPointStyle
See Also
|
Definition
void setPointStyle( integer size, string style )
Description
Updates the pointSize and/or pointStyle and redraws the chart. Size or style update may be avoided by sending undefined.
See EJSC.ScatterSeries.pointStyle for a list of available styles.
Example
>> Update the size and style of scatter series points
mySeries.setPointStyle( 5, "diamond" );
>> Update only the style of scatter series points
mySeries.setPointStyle( undefined, "box" ); |