Class: GraphBuilders::GoogleCharts

Inherits:
Object
  • Object
show all
Defined in:
lib/graph_builders/google_charts.rb

Overview

Generate an HTML chart using Google Charts

Instance Method Summary collapse

Instance Method Details

#build(graph_data, save_to:) ⇒ Object



7
8
9
10
11
# File 'lib/graph_builders/google_charts.rb', line 7

def build(graph_data, save_to:)
  write_chart graph_data, to_file: save_to
  open_with_default_browser save_to
  File.expand_path save_to
end