Google图表 - Y轴值与实际值不匹配

时间:2012-07-30 16:24:07

标签: google-visualization google-chartwrapper

从链接中可以看出,当它应该是999时,最大值约为250(参见下面的数据)。 为什么这个,我该怎么办呢?

http://chart.apis.google.com/chart?chxt=y&chd=e:AMAPAWAqAgGfPnPnLS&chxr=0,0,1000 ,200安培; CHCO = 76a4fb&安培; CHS = 600×300&安培; CHT = LC&安培; chtt =有些+图表&安培;的Chls = 1.0

import GChartWrapper as C

def makeGraph(maxY, stepY):
    data = [12,15,22,42,32,415,999,999,722]
    G = C.Line(data, encoding='extended')
    G.color('76A4FB')
    G.line(1)
    G.axes('y')
    G.axes.range(0,0,maxY,stepY)
    G.size(600,300)
    G.title("Some graph")
    return G

g = makeGraph(1000,200)

print ""

print g

print ""

1 个答案:

答案 0 :(得分:0)

这与我遇到的问题略有不同,但这可能会有所帮助。在google charts api中,您必须将轴范围参数发送到

&chds=a

您的问题可能与您的问题相同。