HorizontalBarSeries y can't be string
NEsanya opened this issue · 2 comments
NEsanya commented
In the documentation, the y field says: "Type: (Horizontal Bar Series): string | number". But in practice, the y field can only be a number.
Example:
<XYPlot width={300} height={300}>
<HorizontalBarSeries
data={[
{ y: "APPLE", x: 7 },
{ y: "BANANA", x: 10 }
]}
/>
</XYPlot>
That code throws many errors on the console. But if we put an int in the y field, then everything will work.
kaustubhai commented
Same goes for VerticalBarSeries, x can't be a string
Jefff-yang commented