MariiieP opened a new issue, #20219: URL: https://github.com/apache/echarts/issues/20219
### Version 5.5.1 ### Link to Minimal Reproduction https://jsfiddle.net/BlackLabel/uab5mw0d/ ### Steps to Reproduce I want to shift the data on the axis beyond the date. After the shift, redraw the data on the graph. See ER. I tried to do this using the current capabilities and attaching the configuration below. If you set a large percentage, it starts to work in a similar way. But it is unrealistic to select a percentage for the gap between the data every time Also, this solution allows you to shift the axis only in one direction, and not in two at once. Example: ``` option = { xAxis: { type: 'time', splitNumber: 5, }, dataZoom: { **start: 99.9992**, type: "inside", moveOnMouseMove: "ctrl", // rangeMode: [1570627800000, 50] }, yAxis: { type: 'value', splitNumber: 3, min: 0, max: 5, alignWithLabel: true }, series: [ { data: [[1721906700000, 0], [1721906400000, 1], [1721906100000, 2], [1721905800000, 0], [1721905500000, 1]], type: 'line', **zoom: 0.15,** }, { type: 'scatter', data: [ [1570627800000, 2] ] } ] } ``` ### Current Behavior I can't achieve this behavior at the moment. rangeMode allows you to change the axis only inside the current segment 0-100. Behavior with the configuration above:  ### Expected Behavior ER: The highcharts library allows you to do this:  simplified example: https://jsfiddle.net/BlackLabel/uab5mw0d/ ### Environment ```markdown - OS: windows - Browser: Chrome 126.0.6478.185 - Framework: React 18 ``` ### Any additional comments? Is it possible to achieve ER with current capabilities? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
