Awesome support for an awesome library. This is exactly what I needed.
On May 29, 3:02 pm, Rodrigo Araújo <
alf.rodr...@gmail.com> wrote:
> Hello Paul,
> Through the evolution of CairoPlot, that legend representation was removed
> as it had too many overlapping problems.
> Using the trunk version, take a look at this example on tests.py
>
> #Labels
>
> data = { "john" : [-5, -2, 0, 1, 3], "mary" : [0, 0, 3, 5, 2],
> "philip" : [-2, -3, -4, 2, 1] }
>
> x_labels = [ "jan/2008", "feb/2008", "mar/2008", "apr/2008", "may/2008" ]
>
> y_labels = [ "very low", "low", "medium", "high", "very high" ]
>
> cairoplot.dot_line_plot( "dot_line_2_dictionary_labels", data, 400,
> 300, x_labels = x_labels,
>
> y_labels = y_labels, axis = True, grid = True,
>
> x_title = "x axis", y_title = "y axis",
> series_legend=True )
>
> This example will generate a little white box on the upper right corner
> containing the legend of the chart :)
>
> Hope this helps,
>
> Rodrigo Araújo
>
> On Fri, May 29, 2009 at 10:35 AM, Paul <
3vo...@gmail.com> wrote:
>
> > Whenever I create a dot_line_plot, and even by running the examples
> > found here,