UNPKG

uni-query

Version:

🐠 为uniapp设计的开源组件库,专注最重要的核心组件

11 lines (9 loc) 309 B
import type CanvasType from "vislite/types/Canvas" export function drawRectBar(painter: CanvasType, serie: any, color: string) { painter.config({ fillStyle: color }) serie.rects.forEach((rect: any) => { painter.fillRect(rect.x, rect.y, rect.width, rect.height) }) }