#########################################################################
## default.py
#########################################################################
def test():
    import pygal
    from pygal.style import LightColorizedStyle
    from pygal import Config
    config = Config()
    
    
    stackedbar_chart = pygal.StackedBar()
    stackedbar_chart.title = 'Browser usage evolution (in %)'
    stackedbar_chart.x_labels = map(str, range(2002, 2013))
    stackedbar_chart.add('Firefox', [None, None, 0, 16.6,   25,   31, 36.4, 
45.5, 46.3, 42.8, 37.1])
    stackedbar_chart.add('Chrome',  [None, None, None, None, None, None,   
 0,  3.9, 10.8, 23.8, 35.3])
    stackedbar_chart.add('IE',      [85.8, 84.6, 84.7, 74.5,   66, 58.6, 
54.7, 44.8, 36.2, 26.6, 20.1])
    stackedbar_chart.add('Others',  [14.2, 15.4, 15.3,  8.9,    9, 10.4, 
 8.9,  5.8,  6.7,  6.8,  7.5])
    return stackedbar_chart.render() 
    
See result at tat.plushours.com/test


เมื่อ วันจันทร์ที่ 4 พฤษภาคม ค.ศ. 2015 22 นาฬิกา 56 นาที 34 วินาที UTC+7, 
Luis Ramos เขียนว่า:
>
> Hi,
> I would like to use pygal to display nice charts in browser. I have tried 
> these ways:
> 1- Creating a function that returns an SVG 'render'
> 2- Creating a script that saves an SVG file, then calling it from the HTML 
> file (Views).
>
> None of these work. I get the error: error on line 68 at column 8: 
> Opening and ending tag mismatch: link line 0 and head
>
> Can you guys tell me what am I doing wrong?
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to