File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change 1+ import { convertDynamicProperties } from "../../static/utils/dynamic_properties.js" ;
2+
13export default {
24 template : "<div></div>" ,
35 async mounted ( ) {
@@ -6,6 +8,7 @@ export default {
68 await import ( "highcharts-more" ) ;
79 }
810 await Promise . all ( this . extras . map ( ( extra ) => import ( extra ) ) ) ;
11+ convertDynamicProperties ( this . options , true ) ;
912 this . seriesCount = this . options . series ? this . options . series . length : 0 ;
1013 this . options . plotOptions = this . options . plotOptions ?? { } ;
1114 this . options . plotOptions . series = this . options . plotOptions . series ?? { } ;
@@ -47,6 +50,7 @@ export default {
4750 this . chart . addSeries ( { } , false ) ;
4851 this . seriesCount ++ ;
4952 }
53+ convertDynamicProperties ( this . options , true ) ;
5054 this . chart . update ( this . options ) ;
5155 }
5256 } ,
You can’t perform that action at this time.
0 commit comments