English | 简体中文
leafer-x-grid 是 Leafer-ui 的第三方 grid 插件,用于提供显示网格和网格吸附能力。
npm i leafer-x-grid --save
使用插件时,创建一个插件实例,并传入 App
或者 Leafer
实例。(推荐使用App
)
如果传入的是 App
,会在sky
层中绘制弹窗,如果传入的是 Leafer
,会在传入的Leafer
层中绘制弹窗。
请注意:如果传入
App
时尚未创建sky
层,会自动创建sky
层
import { GridPlugin } from 'leafer-x-grid'
const app = new App({ view: window })
const plugin = new Grid(app)
配置项可在创建 tooltipPlugin 实例时作为第二个参数传入
new GridPlugin(app, {
color: 'rgb(128, 128, 128)',
position: 'above',
zIndex: 1000,
show: true,
gridStepX: 50,
gridStepY: 50,
})
具体配置项如下,点击字段名可转跳至详细配置
字段 | 类型 | 默认值 | 说明 |
---|