文档首页
面向 VS Code 的 MySQL Shell


面向 VS Code 的 MySQL Shell  /  TypeScript  /  数据库笔记本:以可视化图表格式显示数据

正式发布前:2024-07-17

9.4 数据库笔记本:以可视化图表格式显示数据

数据库笔记本:使用 LIMIT 和 ORDER BY 在条形图中显示人口

runSql("SELECT Name, Population FROM world.country LIMIT 10;", function (result) {
    var options: IGraphOptions = {
        series: [
            {
                id: "myFirstGraph",
                type: "bar",
                yLabel: "Country Population",
                data: result as IJsonGraphData,
                marginLeft: 60,
                marginBottom: 30,
                yDomain: [0, 50000000]
            },
        ],
    };
    Graph.render(options);
});