MENU
.net Powerful JavaScript charts
About
RGraph is a JavaScript charts library based on HTML5 SVG and canvas. RGraph is mature (over 18 years old) and has a wealth of features making it an ideal choice to use for showing charts on your website.

More »

 

Version 7.11
Version 7.11 (released in March 2026) is the latest version of RGraph and contains just a few updates to the code which you can see on the changelog page. There's a new dumbbell variation for the Bar and Horizontal bar charts (both SVG and canvas) and the front page layout of the website has been tweaked.

Download »

 

HTML datagrid
In the April 2025 (v6.21) release a new datagrid object was added. This makes it easy to add static or dynamic data tables to your pages. It can be used whether you use the canvas or SVG libraries or entirely standalone.

Read more »

 

Download
Get the latest version of RGraph (version 7.11, 21st March 2026) from the download page. You can read the changelog here. There's also older versions available, minified files and links to cdnjs.com hosted libraries.

Download »

 

License
RGraph can be used for free under the GPL or if that doesn't suit your situation there's an inexpensive (£129) commercial license available.

More »

How do I add a click event to a bar in my Bar chart?

Post a reply

Posted by oujae at 09:51 on Monday 1st June 2026 [link]
i have a bar chart and want to add click to a bar. how is this possible?

Posted by Richard at 11:22 on Monday 1st June 2026 [link]
Hi,

It certainly is. There are a few ways that you can do this - some using more standard events but the easiest, I think, is to use the RGraph pseudo-standard event handlers that mimic the standard ones and to add them you could do this:


    myBar = new RGraph.Bar({
        id: 'cvs',
        data: [8,6,4,3,5,9,6],
        options: {
            marginInner: 20
        }
    }).draw();

    // A mousemove event listener to change the mouse pointer
    myBar.$2.onmousemove = function (e, obj)
    {
        // By returning a truthy value the mouse pointer
        // will be changed to the hand.
        return true;
    }

    // The click event listener that handles the click
    myBar.$2.onclick = function (e, obj)
    {
        alert('The third bar on the chart was clicked!');
    }

You could also do this with the new events property if you prefer, but you do need to check the index of the bar because the event will be applied to every bar on the chart:


    myBar = new RGraph.Bar({
        id: 'cvs',
        data: [8,6,4,3,5,9,6],
        options: {
            marginInner: 20,
            events: {
                click: function (e, shape)
                {
                    if (shape.dataset === 2) {
                        alert('The third bar was clicked!');
                    }
                },
                mousemove: function (e,shape)
                {
                    if (shape.dataset === 2) {
                        return true;
                    }
                }
            }
        }
    }).draw();


Cheers.

Richard

Posted by oujae at 12:02 on Monday 1st June 2026 [link]
thanks v much

Post a reply

What's your name?
What do you want to say?