npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

coordinate-draw-line

v1.0.9

Published

一个轻量、高效的坐标系画线组件

Downloads

15

Readme

CoordinateDrawLine

一个基于 vue3 开发的轻量、高效的坐标绘制线条工具

在线演示和使用手册(DEMO)

GIT地址

https://gitee.com/ericfang/coordinate-draw-line

安装

使用以下命令安装 coordinate-draw-line

npm install coordinate-draw-line
# 或
yarn add coordinate-draw-line

导入组件

全局导入

main.js 中全局引入 coordinate-draw-line

import {createApp} from "vue";
import App from "./App.vue";
// v3-drag-zoom 组件
import CoordinateDrawLine from "coordinate-draw-line";

createApp(App).use(CoordinateDrawLine).mount("#app");

按需导入

在需要的组件中导入 coordinate-draw-line


<script setup lang="ts">
  import {CoordinateDrawLine} from "coordinate-draw-line";

</script>

<template>
  <div class="" style="width: 800px;height: 480px;">
    <coordinate-draw-line
        :x-end="200"
        :y-end="100"
    ></coordinate-draw-line>
  </div>
</template>

API参数

CoordinateDrawLine

Props

| 参数名 | 类型 | 默认值 | 是否必须 | 说明 | |-----------------|------------|-----|------|--------------| | xStart | number | 0 | 否 | 坐标系左下角x起始大小 | | yStart | number | 0 | 否 | 坐标系左下角y起始大小 | | xEnd | number | | 是 | 坐标系右上角x结束大小 | | | yEnd | number | | 是 | 坐标系右上角y结束大小 | | | xAxisSplit | int | 10 | 否 | X轴分割线的数量 | |
| yAxisSplit | int | 10 | 否 | Y轴分割线的数量 | | splitStyle | LineStyle | | 否 | 分割线样式 | | axisStyle | LineStyle | | 否 | 轴线样式 | | lineStyle | LineStyle | | 否 | 默认线条样式 | | lineHoverStyle | LineStyle | | 否 | 默认鼠标悬浮在线条上样式 | | pointStyle | PointStyle | | 否 | 默认点样式 | | pointHoverStyle | PointStyle | | 否 | 默认鼠标悬浮在点上样式 | | textStyle | TextStyle | | 否 | 刻度文本样式 | | textDistance | number | 5 | 否 | 文本与轴线的距离 | | padding | number | 20 | 否 | 坐标系与容器之间的距离 |

Event

| 事件 | 参数 | 说明 | |----------|----------------------------------------------|-------------------------| | changing | (point:Point | null, lines: Line[]) => void | 鼠标拖动点过程中触发 | | changed | (point:Point | null, lines: Line[]) => void | 鼠标拖动完成触发一次(删除线条等也会触发一次) |

Exposed

| 方法 | 参数 | 说明 | |------------|-------------------|--------------| | addLine | (line:Line)=>void | 添加线条 | | removeLine | (line:line)=>void | 移除线条 | | clearLines | ()=>void | 清除所有线条 | | draw | () => void | 强制绘制一次canvas |

Point

| 属性 | 类型 | 说明 | |------------|------------|--------| | x | number | x坐标 | | y | number | y坐标 | | line | Line | 所属线条 | | style | PointStyle | 样式 | | hoverStyle | PointStyle | 鼠标悬浮样式 |

PointStyle

| 属性 | 类型 | 说明 | |-------------|--------|------| | radius | number | 半径 | | fillStyle | string | 填充色 | | strokeStyle | string | 边框色 | | lineWidth | number | 边框宽度 |

Line

| 属性 | 类型 | 说明 | |---------------|-----------|-----------------| | start | Point | 起点 | | end | Point | 终点 | | style | LineStyle | 样式 | | hoverStyle | LineStyle | 鼠标悬浮样式 | | points | Point[] | 点列表 | | xDull | DullType | 单调性 | | yDull | DullType | 单调性 | | fixed | number | 保留小数位数 | | mergeDistance | number | 点合并距离(小于0将不会合并) |

LineStyle

| 属性 | 类型 | 说明 | |-------------|--------|------| | strokeStyle | string | 线条颜色 | | lineWidth | number | 线条宽度 |

DullType

| 值 | 说明 | |-----------|------| | increase | 单调上升 | | decrease | 单调下降 | | undefined | 无约束 |

Text

| 属性 | 类型 | 说明 | |-------|-------------------------------|------| | text | string | 文本内容 | | point | Point | 所在位置 | | align | "left" | "center" | "right" | 对齐方式 | | style | TextStyle | 文本样式 |

TextStyle

| 属性 | 类型 | 说明 | |-----------|--------|--------------| | font | string | 字体(12 Arial) | | fillStyle | string | 填充颜色(#000) |