New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

bi-sdk

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bi-sdk

bi sdk

latest
npmnpm
Version
2.0.2
Version published
Maintainers
1
Created
Source

TodoList

√ 拖放
√ 元素自动对齐和位置调整算法(可借鉴开源的拖拽组件)
√ 各图表的实现类
√ 辅助方法的实现
√ 核心渲染逻辑
√ 支持自定义扩展机制
√ 排版自动适配
√ 窗口大小变化后自动渲染
- 历史图表的清空:clear 图表
- 优化图表的参数配置

图表 V2.0 TodoList

  • 图表的开发 API 优化扩展
import SDK, { createChart } from "dt-sdk";

createChart({
  //...
}).amount("line1");

createChart({
  //...
}).amount("line2");
  • 简化图表参数传递
import { createChart } from "dt-sdk";
//
let chart = createChart(
  {
    series: [{ type: "line" }, { type: "line" }, { type: "bar" }]
    //...
  },
  { extend: [] }
)
  .dataSet({ source: [] })
  .amount("line1");
//
  • v2.0 的介绍文档

修复 update、dataSet 方法升级 echart 版本 5.3 添加生命周期函数添加 useChart 方法

Keywords

bi sdk

FAQs

Package last updated on 08 Apr 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts