2007年12月26日水曜日

Google Chart API

Google Chart API の整理

もっとも、Eastwood のためだが...

- user 1日 50000 リクエストまで。

http://chart.apis.google.com/chart?
chs=200x125
&chd=s:helloWorld
&cht=lc
&chxt=x,y
&chxl=0:|Mar|Apr|May|June|July|1:||50+Kb

- chs=wwwxhhh は pixel 単位のサイズ
- chd=.... はデータ
- cht=... はチャートの種類
- chxt=x,y は x, y 両方のラベルが必要ということを指定
- chxl=... は x, y 軸のラベル

- HTML に embed するときは & ではなく & をつかう。

- char data には3種類のエンコーディングがある。
-- Simple 62 までの値 chd=s:...
A=0,B=1,Z=25,a=26,z=51,0=52,9=61,_=missing value
data set separator=","
-- Text 1000 までの値 chd=t:...
0.0=0,1.0=1,100.0=100, -1=missing value
data set separator="|"
-- Extended 4096 までの値 chd=e:
use char pair, A-Za-z0-9-._
AA = 0, AZ = 25, Aa = 26, Az = 51, A0 = 52, A9 = 61, A- = 62, A. = 63
BA = 64, BZ = 89, Ba = 90, Bz = 115, B0 = 116, B9 = 125, B- = 126, B. = 127
.A = 4032, .Z = 4057, .a = 4058, .z = 4083, .0 = 4084, .9 = 4093, .- = 4094, .. = 4095.
'_' = missing value
data set separator=","

(書きかけ...)

0 件のコメント: