以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- echarts里面dataset如何通过foxtable把table数据写入 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=194024) |
-- 作者:a2704g -- 发布时间:2024/11/3 13:17:00 -- echarts里面dataset如何通过foxtable把table数据写入 option = { dataset: { source: [ [\'product\', \'sales\'], [\'A\', 100], [\'B\', 120], [\'C\', 80], [\'D\', 150] ], transform: { type: \'filter\', config: { condition: row => row[1] > 100 // 筛选 sales 大于 100 的行 } } }, // 其他图表配置 }; 例如table有两列,分别是product,sales
[此贴子已经被作者于2024/11/3 13:29:58编辑过]
|
-- 作者:有点蓝 -- 发布时间:2024/11/3 19:56:00 -- http://www.foxtable.com/mobilehelp/topics/0167.htm 大概这样 Dim ja As New JArray Dim ja2 As new JArray ja2.add("product") ja2.add("sales") ja.add(ja2) dim t as table = table("某表") for each r as row in t.rows ja2= new JArray ja2.add(cstr(r("product"))) ja2.add(cstr(r("sales"))) ja.add(ja2) next msgbox(ja.tostring)
|