We're Moving to a New Support Platform – Starting June 1st!

We’re excited to let you know that starting June 1st, we’ll be transitioning to a new support system that will be available directly on our product websites – Amelia, wpDataTables, and Report Builder. In fact, the new support platform is already live for Amelia and wpDataTables, and we encourage you to reach out to us there.

You'll always be able to reach us through a widget in the bottom right corner of each website, where you can ask questions, report issues, or simply get assistance.

While we still do not offer live support, a new advanced, AI-powered assistant, trained on our documentation, use cases, and real conversations with our team, is there to help with basic to intermediate questions in no time.

We're doing our best to make this transition smooth and hassle-free. After June 1st, this current support website will redirect you to the new "Contact Us" pages on our product sites.

Thanks for your continued support and trust – we’re excited to bring you an even better support experience!

Okay
  Public Ticket #2664720
Changing colours on pie chart
Closed

Comments

  • StoryRoar started the conversation

    Hello, I've noticed a website where the highcharts pie chart colours have been edited and I'm just wondering how this is done with the chart legend visible?

    The website I noticed it on is Fidelity.

    The website I'm trying to change the colours on is VIPIM.

    I have looked at the wpdatatables documentation on highcharts here and here but I can't get both the legend and the colour change working (only one or the other works, but not both).

    Any assistance would be greatly appreciated.

    Kind regards,

    Jackson James

  •  2,576
    Aleksandar replied

    Hello Jackson

    Thank you for your purchase.

    You can combine the two callbacks, like this:

    <script type="text/javascript">
    jQuery(window).on('load',function(){
        if( typeof wpDataChartsCallbacks == 'undefined' ){ wpDataChartsCallbacks = {}; }
        wpDataChartsCallbacks[15] = function(obj){
            obj.options.plotOptions.pie = {
                colors: [
                        '#50B432',
                        '#ED561B',
                        '#DDDF00',
                        '#24CBE5',
                        '#64E572',
                        '#FF9655'
                ],
                dataLabels: {
                        enabled: false
               },
               showInLegend: true
            }
        }
    });
    </script>

    That should work:

    7127249781.png


    Kind Regards, 

    Aleksandar Vuković
    [email protected]

    Rate my support

    wpDataTables: FAQ | Facebook | Twitter | InstagramFront-end and back-end demo | Docs

    Amelia: FAQ | Facebook | Twitter | InstagramAmelia demo sites | Docs | Discord Community

    You can try wpDataTables add-ons before purchasing on these sandbox sites:

    Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables | Master-Detail Tables

  • StoryRoar replied

    Thanks Aleksandar,

    I ended up doing it a different way according to another thread I found.

    However, the last thing I need is to edit the tooltip and legend as in the Fidelity example.

    • Tooltip needs to display just the category and percentage.
    • Legend needs to display the percentage before each item.

    Have a put `tooltip:` and `legend:` in the wrong place?

    <script type="text/javascript">
    jQuery(window).on('load',function(){
        if( typeof wpDataChartsCallbacks == 'undefined' ){ wpDataChartsCallbacks = {}; }
        wpDataChartsCallbacks[1] = function(obj){
            obj.options.plotOptions = {
                series: {
                    dataLabels: {
                        enabled: false
                    }
                },
                pie: {
                    colors: [
                        '#006769', 
                        '#00b8af', 
                        '#28c3e8', 
                        '#0ee4da', 
                        '#2a97a6'
                    ],
                    dataLabels: {
                         enabled: false
                    },
                    showInLegend: true,
                },
                tooltip: {
                    formatter: function() {
                        return this.point.name + ': <b>' + Highcharts.numberFormat(this.y, 1) +'%</b>';         
                    }
                },
                legend: {
                    labelFormatter: function() {
                        return '<strong style="display:inline-block;width:45px;">'+Highcharts.numberFormat(this.y, 1) +'%</strong> ' + this.name ;
                    }, 
                    title: {
                        style: {
                            fontSize: '18px',
                            fontFamily: "'neuzeit-grotesk', sans-serif",
                            color: '#20242b'
                        },
                        text : 'By industry'
                    },
                    squareSymbol: true, 
                },
            };
        };
    });
    </script>
    
  •  2,576
    Aleksandar replied

    I honestly don't know, Jackson

    This would require me to test the placeholders you used, and see what needs to be rearranged (and in what way), or added, or removed in order to help you with this.

    Unfortunately, using wpDataChart callbacks requires some coding experience, and included support refers only to advice. As you can see, our response times are already long, and I simply can't invest time in debugging the callback, as much as I'd like to help you out with this, but due to this I would not be able to help you with this any further I'm afraid.

    Sorry

    Kind Regards, 

    Aleksandar Vuković
    [email protected]

    Rate my support

    wpDataTables: FAQ | Facebook | Twitter | InstagramFront-end and back-end demo | Docs

    Amelia: FAQ | Facebook | Twitter | InstagramAmelia demo sites | Docs | Discord Community

    You can try wpDataTables add-ons before purchasing on these sandbox sites:

    Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables | Master-Detail Tables