Hi,
I have several data that are calculated like this:
I just wanna have the number of process by step. Data used (with aggregation) look like :
And I want the chart looks like :
but with canva line chart. At this point, I have this :
But I want the dots to be connected. I don't understand why they not because seriesStyle parameter has the line option.
Does someones have an idea please ?
That does not look like the correct syntax for changing a seriesStyle
in orde to make it a line chart. You can use the samples from here to help you:
That is possible but you would need to change the shape of your data. Here's an example of one (slightly hacky) way to achieve this in Canvas without changing your Elasticsearch index.
The color arg in pointseries splits a column into multiple series per unique value in a single column. There currently isn't a way to assign a series to a specific column in Canvas. So ideally, your data would be in a shape like this:
{ "timestamp": "2019-05-01 00:00:00", "count_type": "active", "count": 176 }
{…
Looks like you would have to change it to something more similar to this:
| plot
defaultStyle={seriesStyle lines=1 fill=1}
okay thank you, i'll try this
system
(system)
Closed
May 15, 2023, 7:46am
4
This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.