File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -702,10 +702,10 @@ define([
702702 } else {
703703 let xticksOptList = [ ] ;
704704 if ( xticks && xticks !== '' ) {
705- xticksOptList . push ( xticks ) ;
705+ xticksOptList . push ( 'ticks=' + xticks ) ;
706706 // Not able to use xticks_label without xticks
707707 if ( xticks_label && xticks_label != '' ) {
708- xticksOptList . push ( xticks_label ) ;
708+ xticksOptList . push ( 'labels=' + xticks_label ) ;
709709 }
710710 }
711711 if ( xticks_rotate && xticks_rotate !== '' ) {
@@ -722,10 +722,10 @@ define([
722722 } else {
723723 let yticksOptList = [ ] ;
724724 if ( yticks && yticks !== '' ) {
725- yticksOptList . push ( yticks ) ;
725+ yticksOptList . push ( 'ticks=' + yticks ) ;
726726 // Not able to use xticks_label without xticks
727727 if ( yticks_label && yticks_label != '' ) {
728- yticksOptList . push ( yticks_label ) ;
728+ yticksOptList . push ( 'labels=' + yticks_label ) ;
729729 }
730730 }
731731 if ( yticks_rotate && yticks_rotate !== '' ) {
You can’t perform that action at this time.
0 commit comments