Bar gauge percentage Labels

Hi,

I would like to know how to show the percentage out of total in bar gauge chart? as exist in pie chart (value + percentage)

This is the query:

    select $timeSeries as t,
    brand,
    count() as count
    from $table
    where 
      $timeFilter
      group by  t, brand
order by count desc

I am using grafana v 7.5.4

welcome to the :grafana: forum, @hila

i think you’ll need to include more information here. Can you show your data in table format and explain the basic math of how you want to calculate these percentage values?