devstark-com / vue-google-charts

Reactive Vue.js wrapper for Google Charts lib
446 stars 73 forks source link

Locale not changing currency format symbol #177

Open msslgomez opened 2 years ago

msslgomez commented 2 years ago

Hi, I'm trying to use the currency format on my chart but I need the locale to be es-CR which will use the correct currency symbol but when I add this to my chart the chart never changes from using $. I've tried using es and es-CR and even ja to see and it doesn't change at all. What am I doing wrong? Was there some kind of setup or something extra for this to work?

<g-chart
        class="w-full h-full"
        type="ColumnChart"
        :data="chartData"
        :options="chartOptions"
        @ready="onChartReady"
        :settings="{ language: 'es'}"
      />