What problem does this feature solve?
demo
Like this demo, the axis.max/min just change the aixs range to [min, max].
max: 1555 will change the axis max to 1555
I want a dataMin/dataMax property that set the aixs range to [rounded(dataMin),rounded(dataMax)]
dataMax: 1555 will change the axis max to 1800
What does the proposed API look like?
type ValueAxis = {
// other properties
dataMax: number,
dataMin: number
}
What problem does this feature solve?
demo
Like this demo, the axis.max/min just change the aixs range to [min, max].
max: 1555will change the axis max to1555I want a dataMin/dataMax property that set the aixs range to [rounded(dataMin),rounded(dataMax)]
dataMax: 1555will change the axis max to1800What does the proposed API look like?