Hi,
I get a chart (type Line) from this query:
SELECT
IMEI,
DatEve AS Data
,
TipoTlm,
Motorista,
SUM(Exc_Curva) AS Curva,
SUM(Fre_Brusca) AS Freada
FROM Telemetria
GROUP BY DATE(DatEve)
When I use one data series (such "Curva") the legend of displayed chart is Ok but when I add one more serie ("Freada") the legend doesn't show the name of each series.
How can I work around this?
Tks in advance.