Hello Team,
I am working on a chart that combines an areaspline chart and three line charts. The areaspline data is in the form of an array [[timestampInMilliseconds, valueFromZeroToHundred]].
The three line charts are:
a) Maximum, which uses data [[timestampInMilliseconds, hundred]]
b) Minimum, which uses data [[timestampInMilliseconds, zero]]
c) Average, which uses data [[timestampInMilliseconds, average]] (average around 48)
These three lines create horizontal lines on the chart. The names of the lines (Max, Min, and Average) are displayed over the lines when there is less data. However, when there is more data, the names for the Average and Min lines no longer appear.
Can you explain what might be causing this behavior?