I am using Reportlab to create some graphs in my PDF reports. I was creating an Area Line Plot and got stuck at a point where I am not able to understand why am I not getting the output I would like to see.

Here is the code I had written for my output:

def standardLinePlot(data, width=200, height=200):

    d = Drawing(width, height)
    lp = AreaLinePlot()
    lp.data=data
    lp.width, lp.height = width, height
    lp.xValueAxis.valueMin = 0
    lp.xValueAxis.valueMax =36
    lp.xValueAxis.valueSteps = [0,6,12,18,24,30,36]

    lp.yValueAxis.valueMin = 0
    lp.yValueAxis.valueMax =100

    lp.strokeColor=colors.black
    lp.fillColor=colors.grey

    lp.reversePlotOrder = False

    lp.joinedLines=1

    d.add(lp)

    return d

The output I am getting is:

Area Line Plot

My intended output is that grey color should be in place of red color which is the area under the line plot. The other problem is how can I add the axis title to this chart. For example, I need “Months” to be my X axis and “% of NAV” to be my Y axis.

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

To define the color for the lines it seems you need to access... well, the lines :). So, lp.lines[0].strokeColor = colors.grey instead of lp.strokeColor = colors.grey, as that one goes for the plot background color!

The question about the labels is a bit more tricky, though... ScatterPlot includes functionality to set labels for X and Y axis, but that's not the case for AreaLinePlot. Of course, you could derive a class from AreaLinePlot copying that functionality, if you're going to use it often.

link|improve this answer
Thank you jCollado for revising the question. – GulshanM Jan 4 at 22:48
Ricardo: Thank you for your response! Apart from the color of the lines, I am looking to change the plot background color(color which depicts the area under the line). What would you suggest me to change the color red to some other color. Once again Thank you guys for helping me out. – GulshanM Jan 4 at 22:50
@GulshanM: the point is that setting properties directly on the AreaLinePlot will make global changes. The lp.strokeColor = colors.black is making a black rectangular border appear, closing the axes area, and lp.fillColor = colors.grey is making the plot use grey as a background color for the whole thing. To modify the colors for the lines and the area under them, you have to access each line using lp.lines, as point out in the answer. For the lines there's no fillColor: the strokeColor is used instead to floodfill if the inFill property is set for that line. – Ricardo Cárdenes Jan 4 at 23:07
Ricardo: I tried removing the strokeColor from the code and it did remove the black border. But I am still not able to understand how I am getting the red color in the area under the lines when I am using a grey color instead. Did you get a chance to look at the image I posted (jcollado has revised my question and reposted it)IN my graph, I am getting the grey color in an area which is not part of the data line. If you have, Could you send me an example of such graphs? Thanks in advance! – GulshanM Jan 5 at 23:00
You get red instead of grey BECAUSE YOU'RE NOT SETTING THE LINE COLOR. Please, read my explanations. There is something you need to understand: you're not getting grey color "in the area which is not part of the data line". You're setting grey as BACKGROUND COLOR for the whole plot. If there were no data to plot, you'd see grey all around, no red. Why red for the area under the line plotted? I guess red is the default color for lines. You need to change the strokeColor for the plotted line to change the color under the line, and you do that as I told you in the answer – Ricardo Cárdenes Jan 5 at 23:28
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.