File tree 1 file changed +4
-4
lines changed 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -702,10 +702,10 @@ define([
702
702
} else {
703
703
let xticksOptList = [ ] ;
704
704
if ( xticks && xticks !== '' ) {
705
- xticksOptList . push ( xticks ) ;
705
+ xticksOptList . push ( 'ticks=' + xticks ) ;
706
706
// Not able to use xticks_label without xticks
707
707
if ( xticks_label && xticks_label != '' ) {
708
- xticksOptList . push ( xticks_label ) ;
708
+ xticksOptList . push ( 'labels=' + xticks_label ) ;
709
709
}
710
710
}
711
711
if ( xticks_rotate && xticks_rotate !== '' ) {
@@ -722,10 +722,10 @@ define([
722
722
} else {
723
723
let yticksOptList = [ ] ;
724
724
if ( yticks && yticks !== '' ) {
725
- yticksOptList . push ( yticks ) ;
725
+ yticksOptList . push ( 'ticks=' + yticks ) ;
726
726
// Not able to use xticks_label without xticks
727
727
if ( yticks_label && yticks_label != '' ) {
728
- yticksOptList . push ( yticks_label ) ;
728
+ yticksOptList . push ( 'labels=' + yticks_label ) ;
729
729
}
730
730
}
731
731
if ( yticks_rotate && yticks_rotate !== '' ) {
You can’t perform that action at this time.
0 commit comments