I'm trying to accommodate a Bar Chart Y axis with a range from 0 to 1 with 1 decimal place like: 1.2 for tick labels:
I can set it to start at 0 with:
Thisvalue_axis.minimum_scale = 0
And I can set the top value with:
Thisvalue_axis.major_unit = 1
But the intermediate tick labels are not showing
here is my code:
Thisvalue_axis = ThisChart.value_axis
Thisvalue_axis.minimum_scale = 0
Thisvalue_axis.major_unit = 1
Thisvalue_axis.minor_tick_mark = XL_TICK_MARK.OUTSIDE
Thisvalue_axis.has_minor_gridlines = True
Is it possible to Make the values between 0 and 1 display and set the numberformat?