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.10 released
Version 7.10 (released in January 2026) is the latest version of RGraph and contains various updates to the code which you can see on the changelog page. There's also a big tidy up in terms of comments and a significant change to the way that the internal code is referenced which should lead to a performance improvement in effects and animations.

Download »

 

New 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.10, 18th January 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 »

Tootips do not close if the slide effect is used


Posted by Joachim at 12:47 on Friday 29th October 2021 [link]
hi,

just installed and tried v6.04. When using the default for tooltipsEffect "slide" tooltips do not close anymore once they have opened. What is the problem?

Posted by Richard at 13:09 on Friday 29th October 2021 [link]
Can you post a link to the page in question? What happens if you set the tooltipsEffect property back to "fade"? Is there any error message in the error console?

Posted by Joachim at 16:58 on Friday 29th October 2021 [link]
hi,
I've set (programmatically) default to fade. This sample uses "slide": https://www.jschmidt-systemberatung.de/index.php?option=com_content&view=article&id=212&Itemid=659&lang=en
(if you look at html-source you will find the setting of chart)

Posted by Joachim at 17:12 on Friday 29th October 2021 [link]
hi,
I've set (programmatically) default to fade. This sample uses "slide": https://www.jschmidt-systemberatung.de/index.php?option=com_content&view=article&id=212&Itemid=659&lang=en
(if you look at html-source you will find the setting of chart)

Posted by Richard at 18:56 on Friday 29th October 2021 [link]

Well, the problem appears to be the RGraph scripts that you're using:

<!-- I commented out these scripts -->
<!script src="https://www.jschmidt-systemberatung.de/media/plg_content_rgraph/js/php-rgraph.common.js" type="text/javascript"></script>
<!script src="https://www.jschmidt-systemberatung.de/media/plg_content_rgraph/js/RGraph.bar.js" type="text/javascript"></script>

<!-- And added these instead -->
<script src="/libraries/RGraph.common.core.js"></script>
<script src="/libraries/RGraph.common.dynamic.js"></script>
<script src="/libraries/RGraph.common.tooltips.js"></script>
<script src="/libraries/RGraph.bar.js"></script>

(Which are the JS libraries on my own website)

And it seems to be OK. Could it be that you didn't upgrade all the scripts to v6.04?

Posted by Joachim at 11:52 on Saturday 30th October 2021 [link]
hi,
found the problem (thanks for your hint). I've setup a "common" lib containing:
        "core",
        "tooltips",
        "dynamic",
        "effects",
        "key",
        "keyinteractive",
        "contextmenu",
        "csv",
        "annotate"
I had to remove lib "RGraph.common.annotate.js" as it caused the problem. Now option "slide" works fine.

[Replies are closed]