tabletools
Forum Replies Created
-
i checked with our IT dept that the version is:
Visualizer: Charts and Graphs V 1.5.5
Visualizer: Charts and Graphs Pro Add-on V 1.0.4
Forum: Plugins
In reply to: [Inline Google Spreadsheet Viewer] Combo Chart TutorialDear Meitar,
Thanks for your help, finally I figured out how to amend the series chart type of a comboChart, the short code should be:
chart_series='{“0”:{“type”:”bars”},”1″:{“type”:”line”},”2″:{“type”:”bars”}}’
i.e. the 0, 1, 2, and so on should also include the ” sign.
I hope about short code could help those without programming skill like me.
Forum: Plugins
In reply to: [Inline Google Spreadsheet Viewer] Combo Chart TutorialI am very thankful for your typical very, very fast response 🙂
I’ve gone thru doc. of configuration option, and found the the default chart type is ,line’ chart for a combo chart. And learnt from you that each series has to be specify individually.
(and apologize that I am not good at coding)
Isn’t this chart_series call for an object value (that should be a JSON according to your FAQ page), have tried below combinations but not successful on getting a Combo (bar) chart1.)
chart_series='{“type”:”bars”,”type”:”bars”}’2.)
chart_series='{“type”:’bars’,”type”:’bars’}’3)
chart_series='{0:”type”:”bars”,1:”type”:”bars”}’thanks