-
Notifications
You must be signed in to change notification settings - Fork 19.8k
Open
Labels
Description
Version
5.2.2
Link to Minimal Reproduction
Steps to Reproduce
option = {
xAxis: {
type: 'value'
},
yAxis: {
type: 'value'
},
series: [
{
data: [
[12, 3],
[15, 50],
[20, 30],
[100, 50]
],
type: 'line'
}
],
dataZoom: {
startValue: 20
}
};Current Behavior
The detail view in the dataZoom is not the same as the data in range. You can see that the max value is still in the detail view of the dataZoom (wrong) but not in the chart visible area (correct).
Expected Behavior
The detail view should be the same as the chart area.
Environment
- OS:
- Browser:
- Framework:Any additional comments?
Similar problems exists when data is not in the ascending order in xAxis (e.g., [100, 10], [50, 20]).
MrCatEsq and FlandreDaisuki
