Open robertbrowncc opened 1 year ago
When you make a chart and the labels have a single quote " ' " in them it gets outputted as '.
'
Particularly tricky to handle possessive nouns, like "Tom's Toys" or "the service's agreement terms"
I patched the line to this in the javascript.blade to get it to go. However, maybe others have a better solution and time to work on it.
label: "{!! html_entity_decode($dataset['name'] ?? $options['chart_title']) !!}",
When you make a chart and the labels have a single quote " ' " in them it gets outputted as
'
.Particularly tricky to handle possessive nouns, like "Tom's Toys" or "the service's agreement terms"
I patched the line to this in the javascript.blade to get it to go. However, maybe others have a better solution and time to work on it.