jayzeb

Members
  • Content count

    2
  • Joined

  • Last visited

About jayzeb

  • Rank
    Forum Newbie
  1. I would like to set the max value of a 2d line chart and not allow the chart to chart points outside this max. Is this possible? I was hoping I could set the YAxisMaxValue to 100 and if a data point comes in with a value of 150 that is just shows the point along the top line of the chart where the tooltip would show the real value but the graph will NOT auto adjust and mess up the plot for all the other points. It seems like the YAxisMaxValue is always ignored in this case as the chart will always auto-adjust based on the highest value of data supplied.
  2. I have a Real-time Dual-Y Line Chart that wants the Y-axis to be adaptive but would like to show trendzones. I do not have specific min or max values. They could be anything (hence the adaptive requirement). I would like to (using Trendlines in zone mode) to simply set the background color for portions of the chart to be as follows: anything below 5 would display green (i.e. bottom of the chart) anything between 5 and 10 would display yellow (middle of the chart) and anything above 10 would display red. (top) Now even with these types of trendline zones the data coming in might all be between the values of 2 and 4 in which case (because of the adaptive Y) I would expect to see the entire chart green. Sadly it seems that the lines defined in trendlines must have a start and end value otherwise the color will not appear. I was hoping if I did not specify an end or start that it would simply mean any value below the end or above the start (whichever is specified). Since that did not work I tried using both end and start values for all lines but due to the adaptive Y setting, if the a trendline's start or end value falls outside the range of the current set of data so that it does not appear on the Y axis then the chart again does not display the trend color. Using the attached XML for the chart with this data [["null", "Alarms"],["14:02:54", 1],["14:03:04", 4],["14:03:14", 16],["14:03:24", 8],["14:03:34", 12],["14:03:44", 18],["14:03:54", 17],["14:04:05", 0],["14:04:15", 16],["14:04:25", 2],["14:04:35", 13],["14:04:45", 17],["14:04:55", 5],["14:05:06", 2],["14:05:16", 6],["14:05:26", 0],["14:05:37", 0],["14:05:47", 16],["14:05:57", 8],["14:06:07", 4],["14:06:17", 12],["14:06:27", 7],["14:06:37", 14],["14:06:47", 0],["14:06:57", 18],["14:07:07", 2],["14:07:17", 1],["14:07:27", 4],["14:07:37", 1],["14:07:48", 9],["14:07:58", 3],["14:08:08", 17],["14:08:18", 8],["14:08:28", 17],["14:08:38", 17],["14:08:48", 19],["14:08:58", 13],["14:09:08", 14],["14:09:18", 5],["14:09:28", 12]] and you'll see the problem. Because the high end of the data is only at 19 the Y Axis only displays up to 19 and the trendzone (10 to 30) does not take affect even though values are above the startValue for that line. Is this a bug? or am I doing something incorrect? Thanks, J livechart.xml