1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
# require 'SVG/Graph/Schedule'
title = "Billy's Schedule"
data1 = [
"History 107", "5/19/04", "6/30/04",
"Algebra 011", "6/2/04", "8/11/04",
"Psychology 101", "6/28/04", "8/9/04",
"Acting 105", "7/7/04", "8/16/04"
]
g = SVG::Graph::Schedule.new( {
:width => 640,
:height => 480,
:graph_title => title,
:show_graph_title => true,
:no_css => true,
:key => false,
:scale_x_integers => true,
:scale_y_integers => true,
:show_data_labels => true,
:show_y_guidelines => false,
:show_x_guidelines => true,
:show_x_title => true,
:x_title => "Time",
:show_y_title => false,
:rotate_x_labels => true,
:rotate_y_labels => false,
:x_label_format => "%m/%d",
:timescale_divisions => "1 weeks",
:add_popups => true,
:popup_format => "%m/%d/%y",
:area_fill => true,
:min_y_value => 0,
})
g.add_data(
:data => data1,
:title => "Data",
:template => '%m/%d/%y'
)
#puts graph.burn
output_filename = File.basename(__FILE__, ".rb")
if defined?(USE_FOR_TESTING)
File.open(File.join(OUTPUT_FOLDER, "#{output_filename}.html"), "w") {|f| f.write(g.burn)}
else
File.open(File.expand_path("#{output_filename}.svg",__dir__), 'w') {|f| f.write(g.burn_svg_only)} # for inclusion into readme.md
end
|