f69d245bb21be88752420e834a6b6be37e9b525fTripp * The ComboSeries class renders a combination of lines, plots and area fills in a single series. Each
f69d245bb21be88752420e834a6b6be37e9b525fTripp * series type has a corresponding boolean attribute indicating if it is rendered. By default, lines and plots
f69d245bb21be88752420e834a6b6be37e9b525fTripp * are rendered and area is not.
a75ebc38c1de401b679953a9b87bd323f0f48d02Tripp * @module charts
f69d245bb21be88752420e834a6b6be37e9b525fTripp * @class ComboSeries
8648721e29bb657dd5c5ff20f03e86fe50628ce6Tripp * @extends CartesianSeries
8648721e29bb657dd5c5ff20f03e86fe50628ce6Tripp * @uses Fills
8648721e29bb657dd5c5ff20f03e86fe50628ce6Tripp * @uses Lines
8648721e29bb657dd5c5ff20f03e86fe50628ce6Tripp * @uses Plots
f69d245bb21be88752420e834a6b6be37e9b525fTripp * @constructor
e393eced613f9b4a5fb6bdd461d0e0bf5064d5ecTrippY.ComboSeries = Y.Base.create("comboSeries", Y.CartesianSeries, [Y.Fills, Y.Lines, Y.Plots], {
f69d245bb21be88752420e834a6b6be37e9b525fTripp * @protected
f69d245bb21be88752420e834a6b6be37e9b525fTripp * Draws the series.
f69d245bb21be88752420e834a6b6be37e9b525fTripp * @method drawSeries
cc21b565833307c2b0b06deb4e3ab22c2a94be3eTripp * Toggles visibility
cc21b565833307c2b0b06deb4e3ab22c2a94be3eTripp * @method _toggleVisible
cc21b565833307c2b0b06deb4e3ab22c2a94be3eTripp * @param {Boolean} visible indicates visibilitye
cc21b565833307c2b0b06deb4e3ab22c2a94be3eTripp for(; i < len; ++i)
8648721e29bb657dd5c5ff20f03e86fe50628ce6Tripp * @protected
8209f3939e32e0e5bde64192267fdaf9db6f4fbcTripp * Returns the default hash for the `styles` attribute.
8648721e29bb657dd5c5ff20f03e86fe50628ce6Tripp * @method _getDefaultStyles
8648721e29bb657dd5c5ff20f03e86fe50628ce6Tripp * @return Object
e393eced613f9b4a5fb6bdd461d0e0bf5064d5ecTripp var styles = Y.ComboSeries.superclass._getDefaultStyles();
8648721e29bb657dd5c5ff20f03e86fe50628ce6Tripp * Read-only attribute indicating the type of series.
8648721e29bb657dd5c5ff20f03e86fe50628ce6Tripp * @attribute type
8648721e29bb657dd5c5ff20f03e86fe50628ce6Tripp * @type String
8648721e29bb657dd5c5ff20f03e86fe50628ce6Tripp * @default combo
f69d245bb21be88752420e834a6b6be37e9b525fTripp * Indicates whether a fill is displayed.
f69d245bb21be88752420e834a6b6be37e9b525fTripp * @attribute showAreaFill
f69d245bb21be88752420e834a6b6be37e9b525fTripp * @type Boolean
f69d245bb21be88752420e834a6b6be37e9b525fTripp * @default false
f69d245bb21be88752420e834a6b6be37e9b525fTripp * Indicates whether lines are displayed.
f69d245bb21be88752420e834a6b6be37e9b525fTripp * @attribute showLines
f69d245bb21be88752420e834a6b6be37e9b525fTripp * @type Boolean
f69d245bb21be88752420e834a6b6be37e9b525fTripp * @default true
f69d245bb21be88752420e834a6b6be37e9b525fTripp * Indicates whether markers are displayed.
f69d245bb21be88752420e834a6b6be37e9b525fTripp * @attribute showMarkers
f69d245bb21be88752420e834a6b6be37e9b525fTripp * @type Boolean
f69d245bb21be88752420e834a6b6be37e9b525fTripp * @default true
f69d245bb21be88752420e834a6b6be37e9b525fTripp * Reference to the styles of the markers. These styles can also
8209f3939e32e0e5bde64192267fdaf9db6f4fbcTripp * be accessed through the `styles` attribute. Below are default
11174dd4aa7b6152555e21e3e0a5a511e058415bTripp * <dt>fill</dt><dd>A hash containing the following values:
11174dd4aa7b6152555e21e3e0a5a511e058415bTripp * <dt>color</dt><dd>Color of the fill. The default value is determined by the order of the series on the graph. The color
f69d245bb21be88752420e834a6b6be37e9b525fTripp * will be retrieved from the below array:<br/>
8209f3939e32e0e5bde64192267fdaf9db6f4fbcTripp * `["#6084d0", "#eeb647", "#6c6b5f", "#d6484f", "#ce9ed1", "#ff9f3b", "#93b7ff", "#e0ddd0", "#94ecba", "#309687"]`
11174dd4aa7b6152555e21e3e0a5a511e058415bTripp * <dt>alpha</dt><dd>Number from 0 to 1 indicating the opacity of the marker fill. The default value is 1.</dd>
11174dd4aa7b6152555e21e3e0a5a511e058415bTripp * <dt>border</dt><dd>A hash containing the following values:
11174dd4aa7b6152555e21e3e0a5a511e058415bTripp * <dt>color</dt><dd>Color of the border. The default value is determined by the order of the series on the graph. The color
f69d245bb21be88752420e834a6b6be37e9b525fTripp * will be retrieved from the below array:<br/>
8209f3939e32e0e5bde64192267fdaf9db6f4fbcTripp * `["#205096", "#b38206", "#000000", "#94001e", "#9d6fa0", "#e55b00", "#5e85c9", "#adab9e", "#6ac291", "#006457"]`
11174dd4aa7b6152555e21e3e0a5a511e058415bTripp * <dt>alpha</dt><dd>Number from 0 to 1 indicating the opacity of the marker border. The default value is 1.</dd>
11174dd4aa7b6152555e21e3e0a5a511e058415bTripp * <dt>weight</dt><dd>Number indicating the width of the border. The default value is 1.</dd>
11174dd4aa7b6152555e21e3e0a5a511e058415bTripp * <dt>width</dt><dd>indicates the width of the marker. The default value is 10.</dd>
11174dd4aa7b6152555e21e3e0a5a511e058415bTripp * <dt>height</dt><dd>indicates the height of the marker The default value is 10.</dd>
8209f3939e32e0e5bde64192267fdaf9db6f4fbcTripp * <dt>over</dt><dd>hash containing styles for markers when highlighted by a `mouseover` event. The default
f69d245bb21be88752420e834a6b6be37e9b525fTripp * values for each style is null. When an over style is not set, the non-over value will be used. For example,
8209f3939e32e0e5bde64192267fdaf9db6f4fbcTripp * the default value for `marker.over.fill.color` is equivalent to `marker.fill.color`.</dd>
f69d245bb21be88752420e834a6b6be37e9b525fTripp * @attribute marker
f69d245bb21be88752420e834a6b6be37e9b525fTripp * @type Object
e393eced613f9b4a5fb6bdd461d0e0bf5064d5ecTripp getter: function()
8209f3939e32e0e5bde64192267fdaf9db6f4fbcTripp * Reference to the styles of the lines. These styles can also be accessed through the `styles` attribute.
f69d245bb21be88752420e834a6b6be37e9b525fTripp * Below are the default values:
11174dd4aa7b6152555e21e3e0a5a511e058415bTripp * <dt>color</dt><dd>The color of the line. The default value is determined by the order of the series on the graph. The color will be
f69d245bb21be88752420e834a6b6be37e9b525fTripp * retrieved from the following array:
8209f3939e32e0e5bde64192267fdaf9db6f4fbcTripp * `["#426ab3", "#d09b2c", "#000000", "#b82837", "#b384b5", "#ff7200", "#779de3", "#cbc8ba", "#7ed7a6", "#007a6c"]`
11174dd4aa7b6152555e21e3e0a5a511e058415bTripp * <dt>weight</dt><dd>Number that indicates the width of the line. The default value is 6.</dd>
11174dd4aa7b6152555e21e3e0a5a511e058415bTripp * <dt>alpha</dt><dd>Number between 0 and 1 that indicates the opacity of the line. The default value is 1.</dd>
11174dd4aa7b6152555e21e3e0a5a511e058415bTripp * <dt>lineType</dt><dd>Indicates whether the line is solid or dashed. The default value is solid.</dd>
8209f3939e32e0e5bde64192267fdaf9db6f4fbcTripp * <dt>dashLength</dt><dd>When the `lineType` is dashed, indicates the length of the dash. The default value is 10.</dd>
8209f3939e32e0e5bde64192267fdaf9db6f4fbcTripp * <dt>gapSpace</dt><dd>When the `lineType` is dashed, indicates the distance between dashes. The default value is 10.</dd>
11174dd4aa7b6152555e21e3e0a5a511e058415bTripp * <dt>connectDiscontinuousPoints</dt><dd>Indicates whether or not to connect lines when there is a missing or null value between points. The default value is true.</dd>
11174dd4aa7b6152555e21e3e0a5a511e058415bTripp * <dt>discontinuousType</dt><dd>Indicates whether the line between discontinuous points is solid or dashed. The default value is solid.</dd>
8209f3939e32e0e5bde64192267fdaf9db6f4fbcTripp * <dt>discontinuousDashLength</dt><dd>When the `discontinuousType` is dashed, indicates the length of the dash. The default value is 10.</dd>
8209f3939e32e0e5bde64192267fdaf9db6f4fbcTripp * <dt>discontinuousGapSpace</dt><dd>When the `discontinuousType` is dashed, indicates the distance between dashes. The default value is 10.</dd>
f69d245bb21be88752420e834a6b6be37e9b525fTripp * @attribute line
f69d245bb21be88752420e834a6b6be37e9b525fTripp * @type Object
e393eced613f9b4a5fb6bdd461d0e0bf5064d5ecTripp getter: function()
8209f3939e32e0e5bde64192267fdaf9db6f4fbcTripp * Reference to the styles of the area fills. These styles can also be accessed through the `styles` attribute.
f69d245bb21be88752420e834a6b6be37e9b525fTripp * Below are the default values:
11174dd4aa7b6152555e21e3e0a5a511e058415bTripp * <dt>color</dt><dd>The color of the fill. The default value is determined by the order of the series on the graph. The color will be
f69d245bb21be88752420e834a6b6be37e9b525fTripp * retrieved from the following array:
8209f3939e32e0e5bde64192267fdaf9db6f4fbcTripp * `["#66007f", "#a86f41", "#295454", "#996ab2", "#e8cdb7", "#90bdbd","#000000","#c3b8ca", "#968373", "#678585"]`
11174dd4aa7b6152555e21e3e0a5a511e058415bTripp * <dt>alpha</dt><dd>Number between 0 and 1 that indicates the opacity of the fill. The default value is 1</dd>
f69d245bb21be88752420e834a6b6be37e9b525fTripp * @attribute area
f69d245bb21be88752420e834a6b6be37e9b525fTripp * @type Object
e393eced613f9b4a5fb6bdd461d0e0bf5064d5ecTripp getter: function()
a5213fe44a05822af93828cc7c26ee38e8016891Tripp * Style properties for the series. Contains a key indexed hash of the following:
a5213fe44a05822af93828cc7c26ee38e8016891Tripp * <dt>marker</dt><dd>Style properties for the markers in the series. Specific style attributes are listed
a75ebc38c1de401b679953a9b87bd323f0f48d02Tripp * <a href="#attr_marker">here</a>.</dd>
a5213fe44a05822af93828cc7c26ee38e8016891Tripp * <dt>line</dt><dd>Style properties for the lines in the series. Specific
a75ebc38c1de401b679953a9b87bd323f0f48d02Tripp * style attributes are listed <a href="#attr_line">here</a>.</dd>
a5213fe44a05822af93828cc7c26ee38e8016891Tripp * <dt>area</dt><dd>Style properties for the area fills in the series. Specific style attributes are listed
a75ebc38c1de401b679953a9b87bd323f0f48d02Tripp * <a href="#attr_area">here</a>.</dd>
a5213fe44a05822af93828cc7c26ee38e8016891Tripp * @attribute styles
a5213fe44a05822af93828cc7c26ee38e8016891Tripp * @type Object