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
when setting animationStep > 1 then the progressColors do not work
animationStep > 1
progressColors
working example animationStep: 1
animationStep: 1
const weight = 130; const percent = (weight * 100) / 130; circliful.newCircle({ percent, id: 'circle9', type: 'simple', backgroundCircleWidth: 10, foregroundCircleWidth: 11, strokeLinecap: 'round', animationStep: 1, noPercentageSign: true, text: `${weight} / 130g`, textReplacesPercentage: true, progressColors: [ { percent: 1, color: 'orange' }, { percent: 100, color: 'green' }, ], });
result
if I want a faster animation (animationStep: 2), the progress color never gets to green
animationStep: 2
circliful.newCircle({ percent, id: 'circle9', type: 'simple', backgroundCircleWidth: 10, foregroundCircleWidth: 11, strokeLinecap: 'round', animationStep: 2, noPercentageSign: true, text: `${weight} / 130g`, textReplacesPercentage: true, progressColors: [ { percent: 1, color: 'orange' }, { percent: 100, color: 'green' }, ], });
result:
I have the code in stackblitz but this link despite having the code, does not render the chart (even tho for me it does) https://stackblitz.com/edit/js-xgfsfk?file=index.js
Thanks for having a look!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
when setting
animationStep > 1
then theprogressColors
do not workworking example
animationStep: 1
result
if I want a faster animation (
animationStep: 2
), the progress color never gets to greenresult:
I have the code in stackblitz but this link despite having the code, does not render the chart (even tho for me it does)
https://stackblitz.com/edit/js-xgfsfk?file=index.js
Thanks for having a look!
The text was updated successfully, but these errors were encountered: