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

zingchart-vue

v3.0.0

Published

ZingChart Vue Component wrapper to allow native vue syntax for javascript charts, chart events, chart methods and chart styling.

Downloads

1,797

Readme

Commitizen friendly

Quickstart guide

Quickly add charts to your Vue application with our ZingChart component.

This guide assumes some basic working knowledge of Vue.

1. Install

Install the zingchart package via npm:

npm install zingchart

Install the zingchart-vue package via npm:

npm install zingchart-vue

2. Include the zingchart package in your project

The zingchart package is a DIRECT dependency of zingchart-vue but you can also update this package outside of this component. Meaning the wrapper is no longer tied to a ZingChart library version, but just the component itself.

You can import the library like so:

// import the es6 version
import 'zingchart/es6';

3. Include the component in your project

You can either include the zingchart-vue component to your project globally or locally per component. Import the component AFTER ZingChart since it is a DIRECT dependency.

// import the es6 version
import 'zingchart/es6';
// import the component AFTER ZingChart since it is a DIRECT dependency
import ZingChartVue from 'zingchart-vue';

Globally

In your main app file, add the following lines of code:

import { createApp } from 'vue';
import App from './App.vue';
import ZingChartVue from './ZingChart.vue';

const app = createApp(App);
app.component('ZingChartVue', ZingChartVue);
app.mount('#app');

This will register the zingchart component globally throughout your application. While the easiest installation option, this will load ZingChart immediately on your user's first load of the application - regardless if a chart is on the first page or not. We recommend this approach if ZingChart is used heavily across multiple pages.

Globally and locally

You can also register the ZingChartVue component globally and then import just zingchart/es6 locally per each component that uses charts.

import { createApp } from 'vue';
import App from './App.vue';
import ZingChartVue from './ZingChart.vue';

const app = createApp(App);
// install globally to app
app.component('ZingChartVue', ZingChartVue);
app.mount('#app');

Then inside the component you import the zingchart/zingchart-es6 library.

import 'zingchart/es6';

Locally per component

In each component where ZingChart is being used, include the following in your component's configuration:

import 'zingchart/es6';
import ZingChartVue from 'zingchart-vue';

Note: We recommend this approach if ZingChart is only included in a few, un-related pages across your application.

ZingChart Modules

ZingChart comes bundled with your common chart types such as line, column, pie, and scatter. For additional chart types, you will need to import the additional module file.

For example, adding a depth chart to your vue component will require an additional import. Note, you must import from the modules-es6 directory in the zingchart package.

// explicitly import the module
import 'zingchart/modules-es6/zingchart-depth.min.js';

Here is a full .vue example for loading a map:

<script setup>
    // import library
    import ZingChartVue from 'zingchart-vue';

    // import chart modules used on that page
    import 'zingchart/modules-es6/zingchart-maps.min.js';
    import 'zingchart/modules-es6/zingchart-maps-usa.min.js';
</script>

<template>
    <ZingChartVue
        ref="myChart"
        :data="{
            shapes: [
            {
                type: 'zingchart.maps',
                options: {
                    name: 'usa',
                    ignore: ['AK','HI']
                }
            }
        ]
    }" />
</template>

zingchart Global Objects

If you need access to the zingchart objects for licensing or development flags.

import ZingChartVue from 'zingchart-vue';

// zingchart object for performance flags
zingchart.DEV.KEEPSOURCE = 0; // prevents lib from storing the original data package
zingchart.DEV.COPYDATA = 0; // prevents lib from creating a copy of the data package 

// ZC object for license key
zingchart.LICENSE = ['abcdefghijklmnopqrstuvwxy'];

Usage

The zingchart-vue component can be included into template as an element. Below is a simple example of a line chart:

<ZingChartVue :data="chartData" />
<script setup>
    import ZingChartVue from 'zingchart-vue';
    
    const chartData = {
        type: "line",
            series: [
            {
                values: [6,4,3,4,6,6,4]
            }
        ]
    };
</script>

Parameters

The properties, or parameters, you can pass to the <ZingChartVue> tag itself.

data [object]

The configuration object to pass to the chart. This can be a graphset object (multi-chart shared configuration) or a standard single chart configuration.

<ZingChartVue :data="myData" :series="mySeries" />
<script setup>
    import ZingChartVue from '../ZingChart.vue';

    const myData = {
        type: 'line',
        title: {
            text: 'Hello World',
        },
    };
    
    const mySeries = [
        { values: [1,2,4,5,6] }
    ];
}
</script>

series [array] (optional)

Accepts an array of series objects, and overrides a series if it was supplied into the config object. Varries by chart type used - Refer to the ZingChart documentation for more details.

id [string] (optional)

The id for the DOM element for ZingChart to attach to. If no id is specified, the id will be autogenerated in the form of zingchart-auto-#.

output [string] (optional)

The render type of the chart. The default is svg but you can also pass the string canvas to render the charts in canvas.

width [string or number] (optional)

The width of the chart. Defaults to 100%.

height [string or number] (optional)

The height of the chart. Defaults to 480px.

theme [object] (optional)

The theme or 'defaults' object defined by ZingChart. More information available here: https://www.zingchart.com/docs/api/themes

modules [string or array] (optional)

An option to add the name of modules being loaded, into ZingChart's render object. Necessary for certain modules including the 'scalableYAxis'.

forceRender [string] (optional)

The addition of this property will force ZingChart to re-render on all configuration changes. This isn't optimally performant, but some ZingChart features will require a full re-render of the chart, rather than an internal data update change. Only use this option when necessary.

Events

All zingchart events are readily available on the component to listen to. For example, to listen for the 'complete' event when the chart is finished rendering:

    <ZingChartVue :data="myData" @complete="chartCompleted" />
function chartCompleted(result) {
    console.log(`The chart ${result.id} finished rendering`);
}

For a list of all the events that you can listen to, refer to the complete documentation on https://www.zingchart.com/docs/api/events.

Note that the event names are translated to camel-case:

  • complete => @complete
  • node_mouseover => @nodeMouseover
  • legend_marker_click => @legendMarkerClick

Methods

All zingchart methods are readily available on the component's instance to call. For example, to add a new plot node to the chart:

    <ZingChartVue ref="chart" :data="myData" />
const chart = ref();

function myCustomAddNode() {
    chart.value.addnode({
        value: 55,
    });
}

function myCustomMapZoom() {
    // Example of usage when method name contains member (.) operator
    chart.value['zingchart.maps.viewAll']({
        value: 55,
    });
}

For a list of all the methods that you can call and the parameters each method can take, refer to the complete documentation on https://www.zingchart.com/docs/api/methods

Working Example

This repository contains a sample Vue application to give you an easy way to see the component in action

npm run dev