I have been using visualization for a lot of different usecases and has been working for instead of using 3rd party libraries.
Recently I had a need to customize the data labels but I haven't seen anything in the documentation that how to do that. If I leave it as it is, it has nice formatting however if I add custom labels, then there is no formatting applied.
For example I want to bold and set the two values on separate lines and I have tried couple of things but it seems not working. None of the following worked so far for new line
Customer_name: {{customer_name}}; segment: {{ segment}}
Customer_name: {{customer_name}}</br> segment: {{ segment}}
Customer_name: {{customer_name}} /r/n segment: {{ segment}}
Customer_name: {{global_customer_name}} \r\n segment: {{ segment}}
Customer_name: {{customer_name}} /r/n segment: {{ segment}}
Customer_name: {{customer_name}} \u000A segment: {{ segment}}
https://docs.databricks.com/en/visualizations/charts.html
I am trying to understand what kind of formatting will work in the data labels for databricks visualizations