class type configs =Inheritsobject..end
Ext_Base.configsExt_chart_Callout.configsExt_chart_Highlight.configsExt_chart_Label.configsExt_chart_Tip.configsExt_util_Observable.configsmethod highlight : 'a. 'a Js.t Js.propIf set to true it will highlight the markers or the series when hovering
with the mouse. This parameter can also be an object with the same style
properties you would apply to a Ext.draw.Sprite to apply custom
styles to markers and series.
method listeners : 'b. 'b Js.t Js.propAn (optional) object with event callbacks. All event callbacks get the target item as first parameter. The callback functions are:
method renderer : 'c. 'c Js.callback Js.propA function that can be overridden to set custom styling properties to each rendered element. Passes in (sprite, record, attributes, index, store) to the function.
method shadowAttributes : 'd. 'd Js.js_array Js.t Js.propAn array with shadow attributes
method showInLegend : bool Js.t Js.propWhether to show this series in the legend.
Defaults to: true
method tips : 'e. 'e Js.t Js.propAdd tooltips to the visualization's markers. The options for the tips are the same configuration used with Ext.tip.ToolTip. For example:
tips: {
trackMouse: true,
width: 140,
height: 28,
renderer: function(storeItem, item) {
this.setTitle(storeItem.get('name') + ': ' + storeItem.get('data1') + ' views');
}
},
method title : Js.js_string Js.t Js.propThe human-readable name of the series.
method _type : Js.js_string Js.t Js.propThe type of series. Set in subclasses.