Avesha-Rakshith opened a new issue, #18235:
URL: https://github.com/apache/echarts/issues/18235
### Version
5.2.1
### Link to Minimal Reproduction
_No response_
### Steps to Reproduce
create a line graph charts and add series to it,
xAxis: {
type: 'category',
boundaryGap: false,
data: getEchartAxisLabel(dataResponse),
axisLine: {
show: true,
lineStyle: {
type: 'solid',
opacity: 0.3,
width: 1,
},
},
axisLabel: {
show: true,
margin: 16,
formatter: function (value, index) {
return moment(value).format('hh:mm a');
},
},
// name: "Time (UTC)",
nameLocation: 'middle',
nameTextStyle: {
color: 'rgba(18, 21, 62, 1)',
fontStyle: 'normal',
fontWeight: 'bolder',
lineHeight: 14,
padding: [25, 0, 0, 0],
fontSize: 12,
fontFamily: 'Bai Jamjuree',
align: 'center',
verticalAlign: 'top',
},
},
yAxis: {
type: 'category',
// max: 400,
position: 'left',
axisLine: {
show: true,
lineStyle: {
type: 'solid',
opacity: 0.3,
},
},
axisLabel: {
show: true,
margin: 16,
formatter: function (value, index) {
return `${value}`;
},
},
name: 'Latency(ms)',
nameLocation: 'middle',
nameTextStyle: {
color: 'rgba(18, 21, 62, 1)',
fontStyle: 'normal',
fontWeight: 'bolder',
lineHeight: 14,
padding: [0, 0, 40, 0],
fontSize: 12,
fontFamily: 'Bai Jamjuree',
align: 'center',
verticalAlign: 'bottom',
},
},
### Current Behavior
when yaxis type is changes to category the data are plotted correctly , but
when it changes to data plots wrong
eg : [https://echarts.apache.org/examples/en/editor.html?c=area-stack](url)
here the yaxis data and series data plotting is not matching
### Expected Behavior
y axis data should to be plotted with exact with series data
### Environment
```markdown
- OS:windows
- Browser:chrome
- Framework:
```
### Any additional comments?
_No response_
--
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]