@@ -400,10 +400,10 @@ const model = ref([
400400 { key: ' chart.zoom.startIndex' , def: null , type: ' number' , min: 0 , max: 100 },
401401 { key: ' chart.zoom.endIndex' , def: null , type: ' number' , min: 0 , max: 100 },
402402
403- { key: ' chart.padding.top' , def: 36 , type: ' number' , min: 0 , max: 100 , label: " top" , category: ' padding' },
404- { key: ' chart.padding.right' , def: 36 , type: ' number' , min: 0 , max: 100 , label: ' right' , category: ' padding' },
405- { key: ' chart.padding.bottom' , def: 64 , type: ' number' , min: 0 , max: 100 , label: ' bottom' , category: ' padding' },
406- { key: ' chart.padding.left' , def: 48 , type: ' number' , min: 0 , max: 100 , label: ' left' , category: ' padding' },
403+ { key: ' chart.padding.top' , def: 0 , type: ' number' , min: 0 , max: 100 , label: " top" , category: ' padding' },
404+ { key: ' chart.padding.right' , def: 0 , type: ' number' , min: 0 , max: 100 , label: ' right' , category: ' padding' },
405+ { key: ' chart.padding.bottom' , def: 0 , type: ' number' , min: 0 , max: 100 , label: ' bottom' , category: ' padding' },
406+ { key: ' chart.padding.left' , def: 0 , type: ' number' , min: 0 , max: 100 , label: ' left' , category: ' padding' },
407407
408408 { key: ' chart.highlighter.color' , def: ' #1A1A1A' , type: ' color' , label: ' highlighterColor' , category: ' general' },
409409 { key: ' chart.highlighter.opacity' , def: 5 , type: ' range' , min: 0 , max: 100 , label: ' highlighterOpacity' , category: ' general' },
@@ -449,14 +449,14 @@ const model = ref([
449449 { key: ' chart.grid.labels.xAxisLabels.showOnlyFirstAndLast' , def: false , type: ' checkbox' , label: ' showOnlyFirstAndLast' , category: ' grid' },
450450 { key: ' chart.grid.labels.xAxisLabels.yOffset' , def: 24 , type: ' number' , min: - 100 , max: 100 , label: ' offsetYPeriodLabels' , category: ' grid' },
451451 { key: ' chart.grid.labels.xAxisLabels.rotation' , def: 0 , type: ' range' , min: - 360 , max: 360 , label: ' rotation' , category: ' grid' },
452- { key: ' chart.grid.labels.axis.xLabelOffsetY' , def: 24 , type: ' number' , min: - 100 , max: 100 },
452+ { key: ' chart.grid.labels.axis.xLabelOffsetY' , def: 0 , type: ' number' , min: - 100 , max: 100 },
453453
454454 { key: ' chart.grid.labels.xAxisLabels.showOnlyAtModulo' , def: false , type: ' checkbox' },
455455 { key: ' chart.grid.labels.xAxisLabels.modulo' , def: 6 , type: ' number' },
456456
457457 { key: ' chart.grid.labels.yAxis.position' , def: ' right' , type: ' select' , options: [' left' , ' right' ] },
458458 { key: ' chart.grid.labels.yAxis.commonScaleSteps' , def: 10 , min: 0 , max: 100 , type: ' number' },
459- { key: ' chart.grid.labels.yAxis.useIndividualScale' , def: false , type: " checkbox" },
459+ { key: ' chart.grid.labels.yAxis.useIndividualScale' , def: true , type: " checkbox" },
460460 { key: ' chart.grid.labels.yAxis.stacked' , def: false , type: ' checkbox' },
461461 { key: ' chart.grid.labels.yAxis.gap' , def: 24 , min: 0 , max: 200 , type: ' number' },
462462 { key: ' chart.grid.labels.yAxis.labelWidth' , def: 48 , min: 0 , max: 100 , type: ' number' },
@@ -466,7 +466,7 @@ const model = ref([
466466 { key: ' chart.grid.labels.yAxis.groupColor' , def: ' #1A1A1A' , type: ' color' },
467467 { key: ' chart.grid.labels.yAxis.scaleLabelOffsetX' , def: 36 , type: ' number' , min: - 100 , max: 100 },
468468 { key: ' chart.grid.labels.yAxis.scaleValueOffsetX' , def: - 20 , type: ' number' , min: - 100 , max: 100 },
469- { key: ' chart.grid.labels.yAxis.useNiceScale' , def: true , type: ' checkbox' },
469+ { key: ' chart.grid.labels.yAxis.useNiceScale' , def: false , type: ' checkbox' },
470470
471471 { key: ' chart.grid.labels.yAxis.showCrosshairs' , def: true , type: ' checkbox' },
472472 { key: ' chart.grid.labels.xAxis.showCrosshairs' , def: true , type: ' checkbox' },
@@ -831,12 +831,13 @@ const config = computed(() => {
831831 },
832832 xAxisLabels: {
833833 ... c .chart .grid .labels .xAxisLabels ,
834- // values: monthValues.value,
835- values: new Array (13 ).fill (0 ).map ((d ,i ) => {
836- return ` Some long name\n with a value ${ i} `
837- }),
834+ values: monthValues .value ,
835+ // values: new Array(13).fill(0).map((d,i) => {
836+ // return `Some long name\nwith a value ${i}`
837+ // }),
838+ rotation: - 30 ,
838839 datetimeFormatter: {
839- enable: false ,
840+ enable: true ,
840841 locale: ' en' ,
841842 useUTC: false ,
842843 januaryAsYear: true ,
0 commit comments