generated on 2008-09-08 00:56:21 JST

sample code

types := Types clone
types PieChart p3

labels := Labels clone
labels Title chtt(
"""
    GoogleChart sample
    by Io WebAPI
""")

labels Label chl("hoge", "foo", "bar")

data := Data clone
data Text chd("60", "30", "10")

styles := Styles clone
styles size(320, 200)

chart := GoogleChart URL withQuery(types, labels, data, styles)

"Content-type: text/html" println
"""
<html>
    <head>
        <title>GoogleChart with Io</title>
    </head>
    <body>
        <p>#{chart asHTML}</p>
        <p>generated on #{Date}</p>
    </body>
</html>
""" interpolate println