@mathstack/viz 0.0.1-beta.2 → 0.0.1-beta.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -9,9 +9,9 @@ export declare class LinesStrokeBuilder<Datum> {
|
|
|
9
9
|
private _width;
|
|
10
10
|
constructor();
|
|
11
11
|
/**
|
|
12
|
-
* OPTIONAL. Creates a dimension that will control the color of the
|
|
12
|
+
* OPTIONAL. Creates a dimension that will control the color of the lines.
|
|
13
13
|
*
|
|
14
|
-
* If not provided, all
|
|
14
|
+
* If not provided, all lines will be colored with the first color in `d3.schemeTableau10`, the default `range` for the dimension.
|
|
15
15
|
*/
|
|
16
16
|
color(color: null): this;
|
|
17
17
|
color(color: (dimension: OrdinalVisualValueDimensionBuilder<Datum, string, string>) => void): this;
|
|
@@ -20,7 +20,7 @@ export declare class LinesStrokeBuilder<Datum> {
|
|
|
20
20
|
* OPTIONAL. A value for the line's [stroke-dasharray]{@link https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/stroke-dasharray}
|
|
21
21
|
* attribute.
|
|
22
22
|
*
|
|
23
|
-
* @default '
|
|
23
|
+
* @default 'none'
|
|
24
24
|
*/
|
|
25
25
|
dasharray(dasharray: string): this;
|
|
26
26
|
/**
|
package/package.json
CHANGED