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
The size of one of the points associated with the scale is too large. It seems to be rendering at the same size as the value it represents. This is the only category that has a single value, which may be a factor.
In further testing, the plot renders correctly if the size is treated as an array, even if it contains a single value. In other words, this works
marker: {
size: [74.99],
},
although this does not:
marker: {
size: 74.99,
},
If this is the expected behavior, please close. EDIT
Treating the single value as a one element array as shown above, only works if there is one element in the corresponding data arrays. If you use an array and there is more than one point to draw, only the first point will be rendered. I believe that the original issue is therefore an actual bug.
The size of one of the points associated with the scale is too large. It seems to be rendering at the same size as the value it represents. This is the only category that has a single value, which may be a factor.
The code is here.
The text was updated successfully, but these errors were encountered: