@avs/go 0.13.71874 → 0.13.71891
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.
- package/dist/avs-go.min.js +1 -1
- package/package.json +1 -1
- package/src/avs-go-dataviz.js +2 -6
- package/src/constants.js +1 -1
package/package.json
CHANGED
package/src/avs-go-dataviz.js
CHANGED
|
@@ -790,18 +790,14 @@ export class AvsGoDataViz extends AvsDataSourceMixin(AvsStreamMixin(AvsHttpMixin
|
|
|
790
790
|
"legendFontStyle": "--avs-legend-font-style",
|
|
791
791
|
"legendFontWeight": "--avs-legend-font-weight",
|
|
792
792
|
"legendFontSize": "--avs-legend-font-size",
|
|
793
|
+
"legendPointColor": "--avs-legend-point-color",
|
|
793
794
|
// Legend title
|
|
794
795
|
"legendTitleTextColor": "--avs-legend-title-text-color",
|
|
795
796
|
"legendTitleTextRotation": "--avs-legend-title-text-rotation",
|
|
796
797
|
"legendTitleFontFamily": "--avs-legend-title-font-family",
|
|
797
798
|
"legendTitleFontStyle": "--avs-legend-title-font-style",
|
|
798
799
|
"legendTitleFontWeight": "--avs-legend-title-font-weight",
|
|
799
|
-
"legendTitleFontSize": "--avs-legend-title-font-size"
|
|
800
|
-
// Defaults
|
|
801
|
-
"defaultPointSize": "--avs-default-point-size",
|
|
802
|
-
"defaultGlyphSize": "--avs-default-glyph-size",
|
|
803
|
-
"minGlyphSize": "--avs-min-glyph-size",
|
|
804
|
-
"maxGlyphSize": "--avs-max-glyph-size"
|
|
800
|
+
"legendTitleFontSize": "--avs-legend-title-font-size"
|
|
805
801
|
} );
|
|
806
802
|
|
|
807
803
|
this._addDataSourceProperties(model);
|
package/src/constants.js
CHANGED