EJSC.Series.hint_string
See Also
|
Definition
string hint_string = undefined
Description
This property may be used to define a series specific string to be used when displaying point hints. This string may contain replacement indicators (see Text Replacement Options). When left undefined, a default hint defined by the series type will be displayed.
Example
>> Modify the default hint to include custom text.
var series = new EJSC.LineSeries(new EJSC.ArrayDataHandler(), { hint_string: "My Custom Hint<br /><strong>X: </strong>[x]<br/><strong>Y: </strong>[y]" } ); |