Hi,
These two parameter is shown to show values in one graph in different ranges. I want to learn about the impact of these two parameter over performance. Could you give the more detail description of these two parameter purpose. Which one provides best performance while live rending huge data in specific interval. for example, live data updating each second, clients deal with last 1 min data.
1 – First Usage
….
axisX:{
viewportMinimum: new Date() – 1 * 60 * 1000,
interval: 1,
intervalType: “minute”
},
….
2- Second usage:
—-
axisX:{
minimum: new Date() – 1 * 60 * 1000,
viewportMinimum: new Date() – 1 * 60 * 1000,
interval: 1,
intervalType: “minute”
}
—