Conditional formating of a column based on the value from different column using data bars

Having following DataFrame:
df = pd.DataFrame(data={‘A’:[45,50,20], ‘VALUE’:[1000, 2000, 3000]})

image

Is is possible to make a conditional formating of column A based on values from colum VALUE using data bars and hide column VALUE.
If so how could I achieve it based on this simple below code?

dash_table.DataTable(
        columns=[{"name": i, "id": i} for i in df.columns],
        data=df.to_dict('records'))

In this way the Dash DataTable could be very powerful in presenting more information in less space.