Lines Matching refs:line
472 * Sets the length of the tick on either side of the axis line.
833 * Sets the length of the tick on either side of the axis line.
1199 * Sets the length of the tick on either side of the axis line.
1548 * Sets the length of the tick on either side of the axis line.
2038 * Creates a graphic instance to be used for the axis line and ticks.
2094 line: {
2176 * Draws a line segment between 2 points
2179 * @param {Object} startPoint x and y coordinates for the start point of the line segment
2180 * @param {Object} endPoint x and y coordinates for the for the end point of the line segment
2181 * @param {Object} line styles (weight, color and alpha to be applied to the line segment)
2248 line = styles.line,
2276 weight: line.weight,
2277 color: line.color,
2278 opacity: line.alpha
3087 * The graphic in which the axis line and ticks will be rendered.
3168 * line in relation to the top of the axis.
3179 * line in relation to the bottom of the axis.
3190 * line in relation to the left of the axis.
3201 * line in relation to the right side of the axis.
3376 * <dt>line</dt><dd>Properties used for drawing the axis line.
3378 * <dt>weight</dt><dd>Number indicating the width of the axis line. The default value is 1.</dd>
3379 * <dt>color</dt><dd>The color of the axis line. The default value is `#dad8c9`.</dd>
5566 // Special case, the Bezier should be a straight line
5779 styles = this.get("styles").line,
5781 lc = styles.color || this._getDefaultColor(this.get("graphOrder"), "line"),
5870 styles = this.get("styles").line,
5873 color = styles.color || this._getDefaultColor(this.get("graphOrder"), "line");
5894 * Draws a dashed line between two points.
5897 * @param {Number} xStart The x position of the start of the line
5898 * @param {Number} yStart The y position of the start of the line
5899 * @param {Number} xEnd The x position of the end of the line
5900 * @param {Number} yEnd The y position of the end of the line
7499 line: this._defaultLineColors,
8036 if(!val.line)
8038 val = {line:val};
8054 var styles = this._mergeStyles({line:this._getLineDefaults()}, Y.LineSeries.superclass._getDefaultStyles());
8065 * @default line
8068 value:"line"
8074 * <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
8077 * <dt>weight</dt><dd>Number that indicates the width of the line. The default value is 6.</dd>
8078 * <dt>alpha</dt><dd>Number between 0 and 1 that indicates the opacity of the line. The default value is 1.</dd>
8079 * <dt>lineType</dt><dd>Indicates whether the line is solid or dashed. The default value is solid.</dd>
8083 * <dt>discontinuousType</dt><dd>Indicates whether the line between discontinuous points is solid or dashed. The default value is solid.</dd>
8137 * <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
8140 * <dt>weight</dt><dd>Number that indicates the width of the line. The default value is 6.</dd>
8141 * <dt>alpha</dt><dd>Number between 0 and 1 that indicates the opacity of the line. The default value is 1.</dd>
8142 * <dt>lineType</dt><dd>Indicates whether the line is solid or dashed. The default value is solid.</dd>
8146 * <dt>discontinuousType</dt><dd>Indicates whether the line between discontinuous points is solid or dashed. The default value is solid.</dd>
8814 styles.line = this._getLineDefaults();
8915 * <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
8918 * <dt>weight</dt><dd>Number that indicates the width of the line. The default value is 6.</dd>
8919 * <dt>alpha</dt><dd>Number between 0 and 1 that indicates the opacity of the line. The default value is 1.</dd>
8920 * <dt>lineType</dt><dd>Indicates whether the line is solid or dashed. The default value is solid.</dd>
8924 * <dt>discontinuousType</dt><dd>Indicates whether the line between discontinuous points is solid or dashed. The default value is solid.</dd>
8929 * @attribute line
8932 line: {
8936 return this.get("styles").line;
8940 this.set("styles", {line:val});
8976 * <dt>line</dt><dd>Style properties for the lines in the series. Specific
9176 * StackedLineSeries creates line graphs in which the different series are stacked along a value axis
10498 line: this._defaultLineColors,
10747 line = this.get("styles").line,
10748 color = line.color,
10749 weight = line.weight,
10750 alpha = line.alpha,
10831 line: {
11141 line : Y.LineSeries,
11170 * <tr><td>line</td><td>Y.LineSeries</td></tr>