There is an issue if we set axis interval to a small value, and will have a much bigger actual value,
Browser page is stuck or produce ugly graph result after long delay like this:
for example, interval 1 and value 5 000 000:
axisY:{
title: “Metrics Values”,
titleFontFamily: “verdana”,
titleFontSize: 24,
titleFontColor: “DarkCyan”,
labelFontSize: 18,
interval: 1
},
data: [
{
type: “column”,
dataPoints: [
{ x: 1, y: 1 },
{ x: 2, y: 1.2 },
{ x: 3, y: 7.476 },
{ x: 4, y: 8.583 },
]
},
{
type: “column”,
dataPoints: [
{ x: 1, y: 24.951 },
{ x: 2, y: 124.039 },
{ x: 3, y: 5000000 },
{ x: 4, y: 6.918 },
]
}
]
Full sample is here: http://jsfiddle.net/flashback_ua/QwZuf/1327/
I suppose it should be considered as a bug. As solution, it could be for example – in case if max value more than 1000 times of interval, then interval should be switched to auto.
-
This topic was modified 6 years, 5 months ago by vladimirs.