ComboSeries.js revision f69d245bb21be88752420e834a6b6be37e9b525f
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.
f69d245bb21be88752420e834a6b6be37e9b525fTripp * @class ComboSeries
f69d245bb21be88752420e834a6b6be37e9b525fTripp * @extends CartesianSeries, Fills, Lines, 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
e393eced613f9b4a5fb6bdd461d0e0bf5064d5ecTripp var styles = Y.ComboSeries.superclass._getDefaultStyles();
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
f69d245bb21be88752420e834a6b6be37e9b525fTripp * be accessed through the <code>styles</code> attribute. Below are default
f69d245bb21be88752420e834a6b6be37e9b525fTripp * <table width="100%">
f69d245bb21be88752420e834a6b6be37e9b525fTripp * <tr><th>NAME</th><th>DESCRIPTION</th><th>VALUE</th></tr>
f69d245bb21be88752420e834a6b6be37e9b525fTripp * <tr><td>fill</td><td colspan="2"> hash containing the following values:</td></tr>
f69d245bb21be88752420e834a6b6be37e9b525fTripp * <tr><td></td><td colspan="2">
f69d245bb21be88752420e834a6b6be37e9b525fTripp * <table width="100%">
f69d245bb21be88752420e834a6b6be37e9b525fTripp * <tr><th>NAME</th><th>DESCRIPTION</th><th>VALUE</th></tr>
f69d245bb21be88752420e834a6b6be37e9b525fTripp * <tr><td>color:</td><td>Color of the fill.</td><td>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/>
f69d245bb21be88752420e834a6b6be37e9b525fTripp * <code>["#6084d0", "#eeb647", "#6c6b5f", "#d6484f", "#ce9ed1", "#ff9f3b", "#93b7ff", "#e0ddd0", "#94ecba", "#309687"]</code>
f69d245bb21be88752420e834a6b6be37e9b525fTripp * </td></tr>
f69d245bb21be88752420e834a6b6be37e9b525fTripp * <tr><td>alpha:</td><td> Number from 0 to 1 indicating the opacity of the marker fill.</td><td>1</td></tr>
f69d245bb21be88752420e834a6b6be37e9b525fTripp * </td><tr>
f69d245bb21be88752420e834a6b6be37e9b525fTripp * <tr><td>border</td><td colspan="2">hash containing the following values:</td></tr>
f69d245bb21be88752420e834a6b6be37e9b525fTripp * <tr><td></td><td colspan="2">
f69d245bb21be88752420e834a6b6be37e9b525fTripp * <table width="100%">
f69d245bb21be88752420e834a6b6be37e9b525fTripp * <tr><th>NAME</th><th>DESCRIPTION</th><th>VALUE</th></tr>
f69d245bb21be88752420e834a6b6be37e9b525fTripp * <tr><td>color:</td><td> Color of the border.</td><td>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/>
f69d245bb21be88752420e834a6b6be37e9b525fTripp * <code>["#205096", "#b38206", "#000000", "#94001e", "#9d6fa0", "#e55b00", "#5e85c9", "#adab9e", "#6ac291", "#006457"]</code>
f69d245bb21be88752420e834a6b6be37e9b525fTripp * <tr><td>alpha:</td><td> Number from 0 to 1 indicating the opacity of the marker border.</td><td>1</td></tr>
f69d245bb21be88752420e834a6b6be37e9b525fTripp * <tr><td>weight:</td><td> Number indicating the width of the border.</td><td>1</td></tr>
f69d245bb21be88752420e834a6b6be37e9b525fTripp * </td></tr>
f69d245bb21be88752420e834a6b6be37e9b525fTripp * <tr><td>width</td><td>indicates the width of the marker.</td><td>10</td></tr>
f69d245bb21be88752420e834a6b6be37e9b525fTripp * <tr><td>height</td><td>indicates the height of the marker</td><td>10</td></tr>
f69d245bb21be88752420e834a6b6be37e9b525fTripp * <tr><td>over</td><td>hash containing styles for markers when highlighted by a <code>mouseover</code> event.</td><td>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,
f69d245bb21be88752420e834a6b6be37e9b525fTripp * the default value for <code>marker.over.fill.color</code> is equivalent to <code>marker.fill.color</code>.</td></tr>
f69d245bb21be88752420e834a6b6be37e9b525fTripp * @attribute marker
f69d245bb21be88752420e834a6b6be37e9b525fTripp * @type Object
e393eced613f9b4a5fb6bdd461d0e0bf5064d5ecTripp getter: function()
f69d245bb21be88752420e834a6b6be37e9b525fTripp * Reference to the styles of the lines. These styles can also be accessed through the <code>styles</code> attribute.
f69d245bb21be88752420e834a6b6be37e9b525fTripp * Below are the default values:
f69d245bb21be88752420e834a6b6be37e9b525fTripp * <table width="100%">
f69d245bb21be88752420e834a6b6be37e9b525fTripp * <tr><th>NAME</th><th>DESCRIPTION</th><th>VALUE</th></tr>
f69d245bb21be88752420e834a6b6be37e9b525fTripp * <tr><td>color:</td><td>The color of the line.</td><td> The default value is determined by the order of the series on the graph. The color will be
f69d245bb21be88752420e834a6b6be37e9b525fTripp * retrieved from the following array:
f69d245bb21be88752420e834a6b6be37e9b525fTripp * <code>["#426ab3", "#d09b2c", "#000000", "#b82837", "#b384b5", "#ff7200", "#779de3", "#cbc8ba", "#7ed7a6", "#007a6c"]</code>
f69d245bb21be88752420e834a6b6be37e9b525fTripp * <tr><td>weight: </td><td>Number that indicates the width of the line.</td><td>6</td></tr>
f69d245bb21be88752420e834a6b6be37e9b525fTripp * <tr><td>alpha:</td><td> Number between 0 and 1 that indicates the opacity of the line.</td><td> 1</td></tr>
f69d245bb21be88752420e834a6b6be37e9b525fTripp * <tr><td>lineType:</td><td>Indicates whether the line is solid or dashed.</td><td>solid.</td></tr>
f69d245bb21be88752420e834a6b6be37e9b525fTripp * <tr><td>dashLength:</td><td>When the <code>lineType</code> is dashed, indicates the length of the dash.</td><td> 10.</td></tr>
f69d245bb21be88752420e834a6b6be37e9b525fTripp * <tr><td>gapSpace:</td><td>When the <code>lineType</code> is dashed, indicates the distance between dashes.</td><td> 10.</td></tr>
f69d245bb21be88752420e834a6b6be37e9b525fTripp * <tr><td>connectDiscontinuousPoints:</td><td>Indicates whether or not to connect lines when there is a missing or null value between points.</td><td> true.</td></tr>
f69d245bb21be88752420e834a6b6be37e9b525fTripp * <tr><td>discontinuousType:</td><td>Indicates whether the line between discontinuous points is solid or dashed.</td><td> solid.</td></tr>
f69d245bb21be88752420e834a6b6be37e9b525fTripp * <tr><td>discontinuousDashLength:</td><td>When the <code>discontinuousType</code> is dashed, indicates the length of the dash.</td><td> 10.</td></tr>
f69d245bb21be88752420e834a6b6be37e9b525fTripp * <tr><td>discontinuousGapSpace:</td><td>When the <code>discontinuousType</code> is dashed, indicates the distance between dashes.</td><td> 10.</td></tr>
f69d245bb21be88752420e834a6b6be37e9b525fTripp * @attribute line
f69d245bb21be88752420e834a6b6be37e9b525fTripp * @type Object
e393eced613f9b4a5fb6bdd461d0e0bf5064d5ecTripp getter: function()
f69d245bb21be88752420e834a6b6be37e9b525fTripp * Reference to the styles of the area fills. These styles can also be accessed through the <code>styles</code> attribute.
f69d245bb21be88752420e834a6b6be37e9b525fTripp * Below are the default values:
f69d245bb21be88752420e834a6b6be37e9b525fTripp * <table width="100%">
f69d245bb21be88752420e834a6b6be37e9b525fTripp * <tr><th>NAME</th><th>DESCRIPTION</th><th>VALUE</th></tr>
f69d245bb21be88752420e834a6b6be37e9b525fTripp * <tr><td>color</td><td>color of the fill</td><td>The default value is determined by the order of the series on the graph. The color will be
f69d245bb21be88752420e834a6b6be37e9b525fTripp * retrieved from the following array:
f69d245bb21be88752420e834a6b6be37e9b525fTripp * <code>["#66007f", "#a86f41", "#295454", "#996ab2", "#e8cdb7", "#90bdbd","#000000","#c3b8ca", "#968373", "#678585"]</code>
f69d245bb21be88752420e834a6b6be37e9b525fTripp * </td></tr>
f69d245bb21be88752420e834a6b6be37e9b525fTripp * <tr><td>alpha</td><td>Number between 0 and 1 thad indicates the opacity of the fill.</td><td>1</td></tr>
f69d245bb21be88752420e834a6b6be37e9b525fTripp * @attribute area
f69d245bb21be88752420e834a6b6be37e9b525fTripp * @type Object
e393eced613f9b4a5fb6bdd461d0e0bf5064d5ecTripp getter: function()