Jump to content
  • 0

How to change the width of chart columns?


vikovs

Question

5 answers to this question

Recommended Posts

  • 0

Hi vikovs,

To access and modify the width of columns in Caspio-generated HighCharts chart, you may use the following JS:

<script src="https://code.jquery.com/jquery-3.2.1.js"></script>
<script>
$(document).ready(
function ()
{
var chart = Highcharts.charts[0];
chart.update(
{
plotOptions: {
        series: {
            pointWidth: 20 // change the column width here
        }
    },
}
);
}
);
</script>

You can place this snippet of code into the Header of Chart datapage.

Hope this helps.

Link to comment
Share on other sites

  • 0

I tried using this code but it didn't work for me. I can see that $(document).ready function was deprecated in one of their releases.

Please see modified code that helped me to change the width of columns in a chart:

<script type = "text/javascript" >
    var timer = setInterval(function() {
        //Find if chart exists using rect element every x milliseconds
        if (document.getElementsByTagName('rect') != null) {
            //Update Chart
            UpdateChart();
        }
    }, 500);
function UpdateChart() {
    try {
        Highcharts.charts[0].update({
    plotOptions: {
        series: {
            pointWidth: 20 // change the column width here
        }
    },        
});
        //Stop checking
        clearInterval(timer);
    } catch (err) {
        //log errors
    }
}; 
</script>

I hope this helps someone.

Link to comment
Share on other sites

  • 0
On 7/19/2022 at 7:59 AM, sandy159 said:

I tried using this code but it didn't work for me. I can see that $(document).ready function was deprecated in one of their releases.

Please see modified code that helped me to change the width of columns in a chart:

<script type = "text/javascript" >
    var timer = setInterval(function() {
        //Find if chart exists using rect element every x milliseconds
        if (document.getElementsByTagName('rect') != null) {
            //Update Chart
            UpdateChart();
        }
    }, 500);
function UpdateChart() {
    try {
        Highcharts.charts[0].update({
    plotOptions: {
        series: {
            pointWidth: 20 // change the column width here
        }
    },        
});
        //Stop checking
        clearInterval(timer);
    } catch (err) {
        //log errors
    }
}; 
</script>

I hope this helps someone.

Hi, sharing in here a script that I found that allows you to check if an element exists (followed by your code if that element in fact exists) instead of using a timer (setInterval):

 

function waitForElm(selector) {
    return new Promise(resolve => {
        if (document.querySelector(selector)) {
            return resolve(document.querySelector(selector));
        }

        const observer = new MutationObserver(mutations => {
            if (document.querySelector(selector)) {
                resolve(document.querySelector(selector));
                observer.disconnect();
            }
        });

        observer.observe(document.body, {
            childList: true,
            subtree: true
        });
    });
}

 

 

 

 

To use it:

waitForElm('.some-class').then((elm) => {
    console.log('Element is ready');
    console.log(elm.textContent);
});
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...