You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 31, 2021. It is now read-only.
If possible I think the line graph widget would be a bit easier to use with some changes to the properties.
To show 2 lines with the labels a, b, c, d, the values 1, 2, 3, 4 for the first line and 2, 4, 8, 16 for the second line you set the graphData to
a,1,2
b,2,4
c,3,8
d,4,16
I would suggest separating the labels, and adding a property allowing the user to choose whether to show the labels or not, this could also be useful for the y-axis.
I also think that setting the data with a comma separated list of values, one row for each line is a little easier to set up and read.
So the properties would be something like
X-axis labels: a, b, c, d
Show x-axis labels: true
Data: 1, 2, 3, 4
2, 4, 8, 16
The text was updated successfully, but these errors were encountered:
If possible I think the line graph widget would be a bit easier to use with some changes to the properties.
To show 2 lines with the labels a, b, c, d, the values 1, 2, 3, 4 for the first line and 2, 4, 8, 16 for the second line you set the graphData to
a,1,2
b,2,4
c,3,8
d,4,16
I would suggest separating the labels, and adding a property allowing the user to choose whether to show the labels or not, this could also be useful for the y-axis.
I also think that setting the data with a comma separated list of values, one row for each line is a little easier to set up and read.
So the properties would be something like
X-axis labels: a, b, c, d
Show x-axis labels: true
Data: 1, 2, 3, 4
2, 4, 8, 16
The text was updated successfully, but these errors were encountered: