Class type Ext_chart_series_Series.configs


class type configs = object .. end
Inherits
method highlight : 'a. 'a Js.t Js.prop

If 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.prop

An (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.prop

A 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.prop

An array with shadow attributes


method showInLegend : bool Js.t Js.prop

Whether to show this series in the legend.

Defaults to: true

method tips : 'e. 'e Js.t Js.prop

Add 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.prop

The human-readable name of the series.


method _type : Js.js_string Js.t Js.prop

The type of series. Set in subclasses.