Bar chart with current and target values.

Hello team,

I am trying to display a bar chart with this format, or at least accomplish something very similar. The idea is to show the progress of certain groups:

responsibility | [================] | (2/3)
respect | [==== ] | (1/5)

Having the following data in the db:

name | current_value | target | gap

responsibility | 2 | 3 | 1
respect | 1 | 5 | 4

The idea is to display the progress according to each category. Thank you so much in advance.

I think you might want to include a date parameter in the database to actually compare to
I.e. month year etc

You are right, I have a column named “cycle”, it is a varchar having this format: ‘yyyymm’.

PS: reviewing chart examples looks like Bar HTML 5 chart’s tutorial is not working, a blank page is displayed.