File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed
Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 22
33## [ Unreleased]
44
5+ ### Fixed
6+
7+ - styles property of Vizzu class on JS API fixed (renamed to style).
8+
59## [ 0.4.7] - 2022-03-18
610
711### Fixed
Original file line number Diff line number Diff line change @@ -720,7 +720,7 @@ export default class Vizzu {
720720 /** Returns the version number of the library. */
721721 version ( ) : string ;
722722 /** Property for read-only access to style object. */
723- styles : Readonly < Styles . Chart > ;
723+ style : Readonly < Styles . Chart > ;
724724 /** Property for read-only access to chart parameter object. */
725725 config : Readonly < Config . Chart > ;
726726 /** Enable/disable additional features. */
Original file line number Diff line number Diff line change @@ -151,7 +151,7 @@ export default class Vizzu {
151151 ) ;
152152 }
153153
154- get styles ( ) {
154+ get style ( ) {
155155 return this . cloneObject (
156156 this . module . _style_getList ,
157157 this . module . _style_getValue
You can’t perform that action at this time.
0 commit comments