57
Views
1
Comments
Donutchart v1 Highcharts JSON
Application Type
Reactive

Hello guys,

I'm trying to make a Donutchart like this one:


Hard time to achive it with Outsystems Charts (Charts) and not much info about it. 

Since i found some help with

 https://www.outsystems.com/forums/discussion/69161/outsystems-charts-outsystems-donut-chart-show-datapoint-labels/

and 

https://www.outsystems.com/forums/discussion/85076/value-to-be-display-in-center-in-donut-chart/

i'm trying with Outsystems Charts (Charts) Version1 (DonutChart_v1).


With those links i understood i need to use this jSON

"plotOptions:

    {

        series:

            {

            dataLabels:

                {

                enabled: true,

                format:'{point.name}: {y}',

                }

            },

    }

"

for this:


and this jSON 

"{ 

    title: 

        {       

            text: ' "+SumTachesRetard+" ',        

            align: 'center',        

            verticalAlign: 'middle',        

            style: 

            {            

            fontWeight: 'bold',           

            fontSize: 32

            }    

        }

    }

"

for this:


My problem is that i can't find a way to use both jSON to add in AdvancedFormat > HighchartsJSON field of the Chart.


Can someone help us with that?

Thank you

2021-09-06 15-09-53
Dorine Boudry
 
MVP

if you share an oml I'll have a look, but off the top of my head, the plotOptions go at the same level as the title, so something like

"{

          title: {

                .......

          }

          plotOptions: {

                .......

          }

}"

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.