opensource graphics plugin help!

Does anyone know of any open source plugin for creating graphs?

Have you heard of google? You can do a search for these things.

It will lead you straight to http://www.aussiedesignedsoftware.com/rbcharting.html

I checked the link and the page does not link to projects shown.

Actually, even Google gives you this ability.
You create an HTML file, and display it, and Google charts it for you in a browser window.
This is an example:

[code]

google.load("visualization", "1", {packages:["corechart"]}); google.setOnLoadCallback(drawChart); function drawChart() { var data = google.visualization.arrayToDataTable([ ['Year', 'Sales', 'Expenses'], ['2004', 1000, 400], ['2005', 1170, 460], ['2006', 660, 1120], ['2007', 1030, 540] ]);
    var options = {
      title: 'Company Performance',
      vAxis: {title: 'Year',  titleTextStyle: {color: 'red'}}
    };

    var chart = new google.visualization.BarChart(document.getElementById('chart_div'));
    chart.draw(data, options);
  }
</script>
[/code]

[quote=37966:@Jeff Tullin]Actually, even Google gives you this ability.
You create an HTML file, and display it, and Google charts it for you in a browser window.
This is an example:

[code]

google.load("visualization", "1", {packages:["corechart"]}); google.setOnLoadCallback(drawChart); function drawChart() { var data = google.visualization.arrayToDataTable([ ['Year', 'Sales', 'Expenses'], ['2004', 1000, 400], ['2005', 1170, 460], ['2006', 660, 1120], ['2007', 1030, 540] ]);
    var options = {
      title: 'Company Performance',
      vAxis: {title: 'Year',  titleTextStyle: {color: 'red'}}
    };

    var chart = new google.visualization.BarChart(document.getElementById('chart_div'));
    chart.draw(data, options);
  }
</script>
[/code][/quote]

Use this in public web servers: OK

Use this in internal web servers: Not a good idea (if you have some confidential informations, now google know it too)

Check this one out: https://github.com/richhatfield/rhCharts

Coming from the old forum: http://forums.realsoftware.com/viewtopic.php?f=1&t=45240&hilit=graph

Check this one https://forum.xojo.com/4758-release-of-chartpart-v2-0
Works great.

chartpart interesting, easy and simple to use.
Thank you.

[quote=38064:@Alberto Gomez]chartpart interesting, easy and simple to use.
Thank you.[/quote]

And Kevin has plans to add more features to it. Or at least he has told me has plans.