Multiple Google gauges?
Beng Choon Chua
on 24 Mar 2022
Latest activity Edit by Christopher Stapels
on 29 Mar 2022
I have a google gauge that shows my PM2.5 sensor values but I would like to make 3 gauges appear side by side that show the value of different sensors. How can I do that? Thanks
3 Comments
Time DescendingYou can create a custom MATLAB visualization with your gauges.
I've made a gage with ploarplot where theta is the value you want to show. Here is some code to get you started.
f=tiledlayout(1,3); nexttile(f); rho = linspace(1,10,5); theta = 3/4*pi*ones(1,5); myLineWidth = 4; polarplot(theta,rho,'LineWidth',myLineWidth) nexttile(f); polarplot(theta*1.5,rho,'k','LineWidth',myLineWidth); nexttile(f); polarplot(theta*2.5,rho,'r','LineWidth',myLineWidth);
Sign in to participate