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
Given below option with the combination of clipPath + bar.radius options, bar with 0 data, will be broken as shown as the screenshot.
clipPath + bar.radius
bb.generate({ data: { columns: [ ["data", 30, 0, 100], ], type: "bar" }, clipPath: false, bar: { radius: { ratio: 0.2 } } });
Improve not applying radius for bar type when data is 0.
The text was updated successfully, but these errors were encountered:
fix(bar): fix bar radius rendering with clipPath=false option
cc2a1f4
- Make 0(zero) value to not apply Arc path command - When clipPath=false is set, add clip-path attribute to bar element Ref naver#2421
80bf491
chore(release): 3.2.2 [skip ci]
225ee94
## [3.2.2](3.2.1...3.2.2) (2021-11-19) ### Bug Fixes * **api:** Fix zoom reset for regions(), grids() api call ([679ce73](679ce73)), closes [#2411](#2411) * **bar:** fix bar radius rendering with clipPath=false option ([80bf491](80bf491)), closes [#2421](#2421) * **legend:** Fix usePoint option work for spaced data name ([275c1cc](275c1cc)), closes [#2425](#2425) * **types:** fix candlestick data type ([ccac60d](ccac60d)), closes [#2422](#2422)
netil
No branches or pull requests
Description
Given below option with the combination of
clipPath + bar.radius
options, bar with 0 data, will be broken as shown as the screenshot.Improve not applying radius for bar type when data is 0.
The text was updated successfully, but these errors were encountered: