Version
5.3.x
Link to Minimal Reproduction
https://codepen.io/sdfsdfsdasd/pen/ExQoyzG
Steps to Reproduce
- Create a simple line plot/chart using Apache Echarts
- Add built-in data scaling mechanism: dataZoom.
- Config and initialization script may be pasted to Echarts online editor . Or you can use CodePen link presented above.
let x = [];
let y = [];
let scaled = [];
/*y = [
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 300, 300,
10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 0, 0, 0, 0, 0, 0
];*/
for (let i = 1; i < 300; i++) {
x.push(i);
element = Math.random() * 40 + 50;
y.push(element);
scaled.push(element * 6 - 250);
}
option = {
xAxis: {
data: x
},
yAxis: {
min: 0,
max: 300
},
dataZoom: [
{
start: 50,
end: 58.5
}
],
series: [
{
name: 'Fake Data',
type: 'line',
symbol: 'none',
data: y
},
{
name: 'Simulated Scaling',
type: 'line',
symbol: 'none',
lineStyle: {
opacity: 0.3
},
data: scaled
}
]
};
Current Behavior
DataZoom component reaches its main goal, but there is a question to scaled data representation, made by dataZoom. By default, dataZoom doesn't take into account the chart scale limits ticks or/and the minimum and maximum allowable values ( range of a function , represented by the plot). Instead,the thumbnail of the chart is drawn on the specific value range passed to the plot in series section.In addition, everytimea small indent is added from the minimum and maximum values to the borders of the graphic element.
Expected Behavior
As a result, the representation of the visualised data looks inconsistent with reality: null is not null, max is not max (because they don't match the lower and higher bounds of the coordinate area of the thumbnail plot, respectively), the amplitude of the chart fluctuations does not correspond to the scale of real data fluctuations:
As you can see, the magnitude of the fluctuations of the graph, drawn by dataZoom doesn't correspond rather to the main data, but to some kind of artificial transformation of them (light green graph). Then try to comment line 14 and uncomment lines from 6 to 9 (on CodePen). At the start of the plot you'll see main (blue) graph touching y zero line, but not on the thumbnail.
Environment
- OS: Windows 8.1, Windows 10, MacOS X
- Browser: Chrome, Safari, Opera
Any additional comments?
I didn't find any params for dataZoom that make them to look like expected. My question on StackOverFlow was left unanswered , a feature request posted earlier stays unconfirmed so I made this bug report.
Is there a way (documented or undocumented) to remove the indents and force the plot to use the minimum and maximum values allowed for the yAxis ticks? Some options like dataZoom.slider.removeGaps: true | false
and dataZoom.slider.range
(values like "asInData" (current behavior), "asInYaxis" (my case), etc)?
6条答案
按热度按时间f3temu5u1#
Hello, @MrCatEsq ~ If you mean this "indent"?
kxxlusnw2#
hi, @MrCatEsq. I think this is what you might want:
For me, I didn't find any option that will changes this behavior, neither. But I located source code that is related to this:
echarts/src/component/dataZoom/SliderZoomView.ts
Lines 378 to 383 in d805ff2
| | // Nice extent. |
| | constotherOffset=(otherDataExtent[1]-otherDataExtent[0])*0.3; |
| | otherDataExtent=[ |
| | otherDataExtent[0]-otherOffset, |
| | otherDataExtent[1]+otherOffset |
| | ]; |
And I tried to modify as below and it worked:
In fact, maybe @pissang knew that the feature is a wanted one so he left a "FIXME" in code:
echarts/src/component/dataZoom/SliderZoomView.ts
Lines 401 to 402 in d805ff2
| | // FIXME |
| | // Should consider axis.min/axis.max when drawing dataShadow. |
I never touched the source code of Echarts before, so I might be wrong. We'd better wait for core developers to give an anwser.
pieyvz9o3#
Hello, @MrCatEsq ~ If you mean this "indent"?
Hi, @tyn1998! Thanks for the answer. Yes, I mean vertical indents/paddings from top and bottom of the DataZoom border.
Your hotfix partially solves the problem, this code sample prooves that. Now the vertical indents have disappeared, and the amplitude of the graph fluctuations corresponds to its representation on the datazoum.
But we still have problems if the graph partially has no data .
The fix also not working if I don't prefilled "y" array .
zzwlnbp84#
Hi, @MrCatEsq, glad to hear it helps a bit. Since the problem is beyond my capability, further help might be sought from the core team :)
tez616oj5#
Same stuff. The main chart has a scale from 0 to 250 and values from approximately 52.20 to 52.37. The chart thumbnail does not match the main one. It would be great to be able to set the minimum and maximum for the chart thumbnail.
further help might be sought from the core team :)
@pissang, @100pah, @Ovilia, @plainheart, @susiwen8
May be, someone will find it interesting to make a hotfix in one of the next minor releases?
a14dhokn6#
This might be fixed in #17143 . Please wait for this PR to be merged.