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 »

 

SQLite Editor for PHP
The SQLite Editor for PHP software is a tool which will help you and/or your users administer and maintain your SQLite databases. Built as a tool that you can easily provide to your users, there's no danger of them damaging your database.

More »

 

Version 7.20
Version 7.20 (released in June 2026) is the latest version of RGraph and the major change in this version is an update to the default values of properties making for better looking charts without having to set any properties. Read more about this and other changes in the changelog.

Download »

 

Download
Get the latest version of RGraph (version 7.20, 9th June 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 »

 

Latest forum posts
These are the latest support forum posts that have been posted or updated.


23rd June, Richard
The SQLite Editor for PHP admin tool is now available for you to download

16th June, Rachel
I have a question about the 3D Bar chart

12th June, Marco
Should I use SVG or canvas for the charts on my website?

9th June, Richard
New version of RGraph: version 7.20

3rd June, Patrick
Question about installing RGraph

Support forum »

 

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 »

A non-filled Radar chart

A non-filled Radar chart with two data series. The Radar chart can be used to show a dataset where the magnitude of each point relative to the others is important.
[No canvas support]

Here's a Radar chart that happens to have two datasets. By default, Radar charts look a little different, with a fill color applied. This can be set to transparent though, as is the case here, giving us this style of appearance.

The labels are set to only be drawn on the north axis, the textSize has been increased to 16 and the top label (on the "north" axis) has been set to be blank as it would clash with the scale labels.

The axes on the chart have also been disabled.


This goes in the documents header:
<script src="RGraph.common.core.js"></script>
<script src="RGraph.radar.js"></script>
Put this where you want the chart to show up:
<div style="float: right">
    <canvas id="cvs" width="500" height="400">[No canvas support]</canvas>
</div>
This is the code that generates the chart - it should be placed AFTER the canvas tag(s):
<script>
    // Create and configure the Radar chart so that it's not filled and
    // only has the labels on the north axis. The text size has been
    // slightly increased.
    new RGraph.Radar({
        id: 'cvs',
        data: [
            [8,7,6,7,8,6],
            [8,9,4,6,6,8]
        ],
        options: {
            colors: ['transparent'],
            colorsStroke: ['red', 'black'],
            colorsAlpha: 1,
            linewidth: 3,
            labels: ['', 'Barry', 'Gary','Dave','Paul','Rich'],
            labelsAxes: 'n',
            textSize: 16,
            responsive: [
                {maxWidth: null, width: 500, height: 400,parentCss:{'float':'right', textAlign:'center'}},
                {maxWidth: 700,  width: 300, height: 300,parentCss:{'float':'none', textAlign:'center'}}
            ]
        }
    }).trace();
</script>