-
Notifications
You must be signed in to change notification settings - Fork 146
Open
Labels
enhancementNew feature or requestNew feature or request
Description
I've set linechart.YAxisCustomScale(-20, 20) and I want the position of 0 to always stay at the same place.
Looking at the code, unfortunately the LineChart would still rescale the Y axis if a value is encountered that is outside of the range specified here
To me it seems adaptive should be an entirely separate option.
/ YAxisCustomScale when provided, the scale of the Y axis will be based on the
// specified minimum and maximum value instead of determining those from the
// LineChart series. Useful to visually stabilize the Y axis for LineChart
// applications that continuously feed values.
// The default behavior is to continuously determine the minimum and maximum
// value from the series before drawing the LineChart.
// Even when this option is provided, the LineChart would still rescale the Y
// axis if a value is encountered that is outside of the range specified here,
// i.e. smaller than the minimum or larger than the maximum.
// Both the minimum and the maximum must be valid numbers and the minimum must
// be smaller than the maximum.
//
// Providing this option also sets YAxisAdaptive.
func YAxisCustomScale(min, max float64) Option {
return option(func(opts *options) {
opts.yAxisCustomScale = &customScale{
min: min,
max: max,
}
opts.yAxisMode = axes.YScaleModeAdaptive
})
}
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request