I am using this free plugin for Chart: Simple Charts : Line, Bar, Pie Plugin | Bubble by Confluex
I want to customise the colours and font used inside this piechart but I cannot do that through the editor. Here’s the image:
I have tried many free Chart plugins but they don’t work for me except for this one, as I am fetching dynamic data.
Please suggest how to do a custom code to target the correct ID and make customization if it’s possible. Thank you!
hergin
July 14, 2024, 3:23pm
2
If you want to do this with custom HTML element using custom code, check out this post and the example. It has line chart, but you can create your own piechart with backgroundColor
attribute:
Hey @bmcgonigal
I have decided to take this as a challenge for myself. It looks like you need to interpolate the missing values yourself (not null, but proportionally correct values in between) if you want to use the built-in chart solutions (which doesn’t sound like fun or easy at all).
I have utilized chartjs (a feature that is not modeled in any plugin as far as I see) to automatically do it in an HTML element. See the demo below:
[brave_YdD7tnoGkY]
It is simply, if you can put the…