
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
vue-chart-engine
Advanced tools
chart components built with Vue.js.
This repository contains a set of native Vue.js components based on chart engine(AnyChart,HighChart,EChart etc). As a result no dependency on jQuery is required. The only required dependencies are:
$ npm install vue-chart-engine
var engine = require('vue-chart-engine').engine;
new Vue({
components: {
'engine': engine
}
})
import engine from 'vue-chart-engine/src/Home'
// or
import { engine } from 'vue-chart-engine'
new Vue({
components: {
engine
}
})
define(['vue-chart-engine'], function(VueStrap) { var engine = VueChartEngine.engine; ... });
The dist
folder contains vue-chart-engine.js
and vue-chart-engine.min.js
with all components exported in the window.VueChartEngine
object. These bundles are also available in,
and on both the Bower and NPM packages.
<div id="container" style="height:300px;width:50%"></div>
<engine :branch="currentBranch" :genre="currentGenre" :data-init="msg" :container="container"></engine>
<script src="path/to/vue.js"></script>
<script src="path/to/vue-chart-engine.js"></script>
<script>
var vm = new Vue({
components: {
engine: VueChartEngine.engine
},
el: "body",
data: {
currentBranch: 'HighChart',
currentGenre: "area_basic",
msg0:[
["January", 10000],
["February", 12000],
["March", 18000],
["April", 11000],
["May", 9000]
],
msg:[
["January", 10000,8999],
["February", 12000,10000],
["March", 18000,5555],
["April", 11000,6666],
["May", 9000,7777]
],
container:"container"
}
})
</script>
npm install
npm run docs
. This will watch for file changes as you work.npm run build
.vue-chart-engine is licensed under The MIT License.
FAQs
chart components built with Vue.js
The npm package vue-chart-engine receives a total of 67 weekly downloads. As such, vue-chart-engine popularity was classified as not popular.
We found that vue-chart-engine demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.