No commit activity in last 3 years
No release in over 3 years
svg_data_plotter_gem is for generating svg graphs
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies
 Project Readme

svg_data_plotter_gem

WIP: Do not use yet

Ruby Gem for plotting data on an SVG graph

This gem will be taking aspects of my SVG graphs on rails project and turning it into a ruby gem.

What it does currently is generate 5 different type of graphs from Ruby code into an embedded SVG graph.

  • Bar graph
  • Circle graph
  • Gauge graph
  • Pie graph
  • Line graph

The aim is for someone to be able to install this gem and generate a graph in the view like this:

<%= SvgDataPlotter::LineGraph.new(self, line_graph.scores, line_graph.maximum, line_graph.size).render %>