I have an incanter time-series chart, which I can't seem to generate with the correct series labels on. My data looks like this:
__________________________
| :Time | :Count | :Name |
| 12344 | 0 | "A" |
| 12344 | 1 | "B" |
| 12344 | 2 | "C" |
| 12345 | 4 | "A" |
I have tried setting the series label to a small set of strings, but only the first value is displayed on the chart for the first series. My (incorrect sample) code to plot the chart looks like this:
(view (time-series-plot :Time :Count
:x-label "Date"
:y-label "Points"
:title "My Cool Graph"
:legend true
:group-by :Name
:series-label "A" "B" "C"
:data data-to-graph
:points true
))
Any pointers much appreciated.