All Projects → ghalex → vue3-charts

ghalex / vue3-charts

Licence: MIT license
Vue3-Charts is an SVG-based charting library that is very easy to use and highly customizable

Programming Languages

Vue
7211 projects
typescript
32286 projects
javascript
184084 projects - #8 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to vue3-charts

vue3-chartjs
Vue3 wrapper for ChartJS
Stars: ✭ 122 (+41.86%)
Mutual labels:  charts, vue3
nettemp
Interface for controlling the temperature sensors DS18B20, supports; serial DS9097, usb DS9097U, usb DS2490, Raspberry Pi GPIO
Stars: ✭ 53 (-38.37%)
Mutual labels:  charts
ggwaffle
Creating waffle charts in a ggplot friendly way
Stars: ✭ 45 (-47.67%)
Mutual labels:  charts
fluent-vue
Internationalization plugin for Vue.js
Stars: ✭ 137 (+59.3%)
Mutual labels:  vue3
vite-vue3-tailwind
Boilerplate at vue 3 whit firebase, vue notus, typesctip, vite, tailwind
Stars: ✭ 21 (-75.58%)
Mutual labels:  vue3
elementary-plotlib
C/C++ Plotting Library
Stars: ✭ 19 (-77.91%)
Mutual labels:  charts
vue3-oop
使用类和依赖注入写vue组件
Stars: ✭ 90 (+4.65%)
Mutual labels:  vue3
o-fish-web
Web application for the Officer's Fishery Information Sharing Hub (O-FISH). The web app allows agencies to gain insights from the aggregated information gathered during a routine vessel inspection (submitted via the web app).
Stars: ✭ 29 (-66.28%)
Mutual labels:  charts
seal-vue
本项目为 https://github.com/hequan2017/seal 项目 前端vue版本 基于 iview-admin 2.5.0 支持 动态菜单 本项目已停止开发!因长时间未对代码进行维护,可能会造成项目在不同环境上无法部署、运行BUG等问题,请知晓!项目仅供参考!
Stars: ✭ 16 (-81.4%)
Mutual labels:  vue3
RealmAndCharts-example
Simple example of how to use RealmSwift and Charts together - iOS 10 & Swift 3
Stars: ✭ 20 (-76.74%)
Mutual labels:  charts
SwiftCharts
Easy to use and highly customizable charts library for iOS
Stars: ✭ 2,405 (+2696.51%)
Mutual labels:  charts
vue-responsive-video-background-player
Play your own videos in background responsively in different resolutions.
Stars: ✭ 212 (+146.51%)
Mutual labels:  vue3
JMeter-Charts
Application used to generate reports by uploading a JTL file to a rest server
Stars: ✭ 19 (-77.91%)
Mutual labels:  charts
fearless
A dashboard scaffolding based on Vue.js 3.x & TypeScript created by Vite.
Stars: ✭ 1,156 (+1244.19%)
Mutual labels:  vue3
PandasVersusExcel
Python数据分析入门,数据分析师入门
Stars: ✭ 120 (+39.53%)
Mutual labels:  charts
ipychart
The power of Chart.js with Python
Stars: ✭ 48 (-44.19%)
Mutual labels:  charts
KLineChartAndroid
A kline chart UI widget for android(Android版本的k线).
Stars: ✭ 51 (-40.7%)
Mutual labels:  charts
janak
Your next vue.js package!
Stars: ✭ 26 (-69.77%)
Mutual labels:  vue3
vue3-tutorial
Vue3.2、Vite、setup、echarts、composition API
Stars: ✭ 302 (+251.16%)
Mutual labels:  vue3
vue-qqmap
基于Vue3的腾讯地图地址可视化拾取、描点,路径规划插件
Stars: ✭ 21 (-75.58%)
Mutual labels:  vue3


Vue3-Charts

Data visualization in Vue3 made easy

Vue3-Charts is a SVG-based charting library that is very easy to use and highly customizable.

GitHub

Vue3-Charts

Data visualization in Vue3 made easy

  • 💡 Intuitive
  • 🔌 Extensible
  • 📦 Extremely easy to use

Documentation

To learn more about Vue3-Charts read the documentation here

Here is a basic example:

<div>
  <Chart :data="data" :margin="margin" :direction="direction">
    <template #layers>
      <Grid strokeDasharray="2,2" />
      <Bar :dataKeys="['name', 'pl']" :barStyle="{ fill: '#90e0ef' }" />
      <Bar :dataKeys="['name', 'avg']" :barStyle="{ fill: '#0096c7' }" />
      <Line :dataKeys="['name', 'avg']" type="step" />
    </template>
  </Chart>
</div>
<script>
import { defineComponent } from 'vue'
import { plByMonth } from '@/data'
import { Chart, Grid, Bar, Line } from 'vue3-charts'

export default defineComponent({
  name: 'Main',
  components: { Chart, Grid, Bar, Line },
  setup() {
    const data = ref(plByMonth)

    const direction = ref('horizontal')
    const margin = ref({
      left: 0,
      top: 20,
      right: 20,
      bottom: 0
    })

    return {data, margin, direction}
  }
})
</script>

View on Github

Components List

This project is still in early development. New charts will be added regularly.

  • Line Chart
  • Area Chart
  • Stacked Area Chart
  • Column Chart
  • Stacked Column Chart
  • Bar Chart
  • Stacked Bar Chart
  • Scatter Plot
  • Treemap

License

Copyright (c) 2021 Vue3-Charts Contributors Licensed under the MIT license.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].