in reply to Re: Plotting the data using different axes
in thread Plotting the data using different axes

I tried the below code.
my $graph = new GD::Graph::mixed( 900, 600 ); my @data = ( [ '1st', '2nd', '3rd', '4th', '5th' ], [ 3300, 2400, 2300, 1900, 2100 ], [ 500, 550, 900, 510, 400 ], [ 250, 350, 400, 710, 200 ] ); $graph->set( title => TITLE, two_axes => 1, use_axis => [1,2,2], x_label => "Day", y1_label => "Minutes", y2_label => "Hours", long_ticks => 1, y_tick_number => 8, y1_label_skip => 2, y2_label_skip => 2, bar_spacing => 40, types => [ qw(bars linespoints linespoints) ], );

In the dataset 3300 ... 2100, should be plotted in bars using left y axis, which is working. 500 ... 400 and 250 ... 200 should be plotted in linespoints which is also working but referring to left y axis. However, my intent is, it should be plotted according to right y axis. Also, right y axis is getting plotted.

2018-06-08 Athanasius added code tags