We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The 'x' row is not treated as the data labels (cfr screenshots).
A) Billboard imported in a Angular project with npm i billboard.js
B) Creation of a radar chart:
import bb, { radar as bbRadar } from 'billboard.js'; bb.generate({ data: { x: 'x', columns: [ ['x', 'Data A', 'Data B', 'Data C', 'Data D', 'Data E'], ['data1', 330, 350, 200, 380, 150], ['data2', 130, 100, 30, 200, 80], ['data3', 230, 153, 85, 300, 250] ], type: bbRadar(), labels: true }, bindto: `#chart-${this.chartAreaId}` });
The text was updated successfully, but these errors were encountered:
Thanks for the report.
Sorry, something went wrong.
fix(radar): fix labels showing on esm usage
8682317
Make config's 'data_x' field to be appended on data's option, to be available for all chart types. Ref naver#1765
d56ff52
chore(release): 2.1.4 [skip ci]
8845e90
## [2.1.4](2.1.3...2.1.4) (2020-11-11) ### Bug Fixes * **api:** fix tooltip showing when lesser data loaded ([74320cf](74320cf)), closes [#1761](#1761) * **event:** fix referencing event element ([38568c1](38568c1)), closes [#1752](#1752) * **gauge:** fix to be consistent max label value ([0c2006f](0c2006f)), closes [#1759](#1759) * **radar:** fix labels showing on esm usage ([d56ff52](d56ff52)), closes [#1765](#1765) * **shape:** shape not showing on ie11 ([d1366d1](d1366d1)), closes [#1758](#1758) * **tooltip:** fix to reset pending events from .show() ([ce8210c](ce8210c)), closes [#1753](#1753) * **zoom:** fix throwing TypeError during zoom ([f2787fa](f2787fa)), closes [#1760](#1760)
No branches or pull requests
Description
The 'x' row is not treated as the data labels (cfr screenshots).
Steps to check or reproduce
A) Billboard imported in a Angular project with npm i billboard.js
B) Creation of a radar chart:
Result
Expected result
The text was updated successfully, but these errors were encountered: