Hi,

I am trying to use EasyPlot widget to generate graphs. For one I tried
to remove the shadow from line chart in the following way:

class Root(controllers.RootController):
    @expose(template="wgtest.templates.welcome")
    def index(self):
        setA = [[0,0], [1,2], [2,3], [3,7], [4,8], [5,6]]
        setB = [[0,0], [1,1], [2,4], [3,8], [4,7], [5,20]]
        setC = [[0,1], [1,3], [2,5], [3,5], [4,3], [5,2]]
        return dict(ep= EasyPlot(id="diag",
                 style="line",
                 option={'shouldFill':False},
                 width="300",
                 height="300",
                 data=[setA, setB, setC]))

By doing this, the entire graph just vanishes. I tried doing
option={'shouldFill':'false'} also but of no use. Can anyone please
guide how to do this.

Thanks and Regards
Roopesh
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"TurboGears" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/turbogears?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to