我在一些时间单位(T)上使用Google动态图表获取X和Y数据,我不希望时间测量为年,日或周。我还希望持续时间恰好是T时间单位。我在Google文档中找不到有关设置所有状态功能的任何有用信息。例如,iconType
可以是除"BUBBLE"
之外的其他内容吗?或time
的其他选项有哪些?我也尝试过Unique Color设置,但它没有用。
我在定制动态图表时可能遗漏的任何有用资源?
var chart = new google.visualization.MotionChart(document.getElementById('chart_div'));
chart.draw(
data,
{
"duration":158,
"xZoomedDataMin":0,
"dimensions":{"iconDimensions":[0.5 ,1 ]},
"playDuration":158,
"time":"notime","xLambda":1,
"iconKeySettings":[],
"uniColorForNonSelected":false,
"yZoomedDataMin":0,
"iconType":"BUBBLE",
"nonSelectedAlpha":0.4,
"xZoomedIn":false,
"colorOption":"_UNIQUE_COLOR",
"orderedByY":false,
"sizeOption":"_UNISIZE",
"xZoomedDataMax":2,
"yZoomedIn":false,
"orderedByX":false,
"showTrails":false,
"yZoomedDataMax":499,
"yLambda":1,
"width": 800,
"height":600 ,
"showXScalePicker": false ,
"showYScalePicker": false ,
"showChartButtons": false ,
"showSidePanel":false ,
"xZoomedDataMax":158,
"uniColorForNonSelected":true ,
"sizeOption":"2" }
);