摘要: 属性 1. 只有一个系列数据集 2. 给唯一的service附加上data即可 pageList.append({'name':str(result[0]),'value':int(result[1])}) 阅读全文
posted @ 2021-12-15 16:12 remix_alone 阅读(33) 评论(0) 推荐(0)
摘要: select select_list [into new_table_name] from table_source [where search_conditions] [group by group_by_expression] [having search_conditions] [order 阅读全文
posted @ 2021-12-15 15:36 remix_alone 阅读(21) 评论(0) 推荐(0)
摘要: SELECT * FROM table LIMIT [offset,] rows | rows OFFSET offset limit可以给1或2个整数。 给1个参数:展示n行数据 给两个参数:第一参数偏移量,第二参数展示n行数据(从偏移量下一行开始) 阅读全文
posted @ 2021-12-15 15:35 remix_alone 阅读(47) 评论(0) 推荐(0)
摘要: 简介 使用 1.柱状图 x轴数据 type:string,固定为分类catgrory。 data:数组,设置x轴坐标的数据 y轴数据 type:string,固定为value,没有data。 title: 属性: text:string,图表的名称 series: type:string,根据需要的 阅读全文
posted @ 2021-12-15 03:16 remix_alone 阅读(214) 评论(0) 推荐(0)