Jump to content

Legend items spacing/padding


Recommended Posts

Hello @Kuroshi,

I also tried to use CSS but I believe we the only way to adjust it is by using JavaScript code. I used this and it worked.
 

<script type="text/javascript">
document.addEventListener('DataPageReady', chartUpdateHandler)

function chartUpdateHandler(event) {
 var cleaner = function(interv) {
  clearInterval(interv);
 }

 let interv = setInterval(() => {
  if (!!Highcharts.charts[0]) {
   console.log(Highcharts.charts[0]);
   Highcharts.charts[0].update({
legend: {
        layout: 'vertical',
        itemMarginTop: 5,
        itemMarginBottom: 5,
        padding: 5
        }
   });   
   cleaner(interv);
  }
 }, 200);
}
</script>

I hope this helps.

 

Regards,

Barbie

Link to comment
Share on other sites

  • 1 year later...
On 7/20/2021 at 2:03 PM, Barbie said:

Hello @Kuroshi,

I also tried to use CSS but I believe we the only way to adjust it is by using JavaScript code. I used this and it worked.
 

<script type="text/javascript">
document.addEventListener('DataPageReady', chartUpdateHandler)

function chartUpdateHandler(event) {
 var cleaner = function(interv) {
  clearInterval(interv);
 }

 let interv = setInterval(() => {
  if (!!Highcharts.charts[0]) {
   console.log(Highcharts.charts[0]);
   Highcharts.charts[0].update({
legend: {
        layout: 'vertical',
        itemMarginTop: 5,
        itemMarginBottom: 5,
        padding: 5
        }
   });   
   cleaner(interv);
  }
 }, 200);
}
</script>

I hope this helps.

 

Regards,

Barbie

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
Reply to this topic...

×   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...