Questions tagged [zingchart]

ZingChart is a commercial JavaScript charting library with a feature-rich API set used to build interactive charts.

ZingChart is known for:

  • Flexibility
    Design your own chart themes or use ours, across a wealth of chart types and features.

  • Multiple Renders
    Our charting library renders in HTML5 (canvas), SVG, and Image.

  • Speed
    Built by JavaScript experts, our modular library is feature-rich, yet lean and innovative.

  • Support of Live Data
    Need real time? No problem! Push and pull your data through our web sockets.

ZingChart offers the flexibility and resources to create stunning visualizations. We offer over 100 chart types to fit your data. Our unique features like zooming and interactive legends help your users get interactive. And our CSS-like styling allows you to creatively customize your charts.

254 questions
0
votes
1 answer

ZingChart Scale-Y Marker, Can it be drawn on top?

When adding a scale marker to a ZingChart plot, by default the marker is drawn beneath the other plotted data, which isn't always so easy to see (e.g., a line marker beneath a series of bars). var chartConfig = { type: 'bar', title: { text:…
Magnum π
  • 53
  • 1
  • 8
0
votes
1 answer

Control tooltips and node color in ZingChart tree module

I'm trying to control tooltip text and node color in a diagram using the tree module in ZingCharts. I want to use a rule to change the node color for a given value and have the tooltip display that value. Is there a token that will work for this?…
MGlos
  • 45
  • 4
0
votes
1 answer

Zingchart problem with dates not in 24H on export

I have a problem with zingChart and export. on the axis-x, i have dates with hours in 24H. it's ok. But when I download csv or excel, I have the dates on 12H. Here is an example : here my definition for scaleX. "scaleX":{ "zooming" :…
Jeff
  • 59
  • 2
  • 10
0
votes
1 answer

Is there a way to have a x-axis "independent" from x-values for a hboxplot in Zingchart?

I have a selection of weathersensors from which I want to display temperature boxplots. All sensors(weatherstations) are located at various altitudes. Is there a way to have the x-axis display steps of say 100, and place the boxplots where they…
Sven-Erik
  • 133
  • 1
  • 6
0
votes
1 answer

The Y-axis is inconsistent in zingchart

I have a data of voltages from last one month. The zingchart grapht y-axis is inconsistent. What might be the issue? Chart image
0
votes
1 answer

Zingchart real time data feed

I have this Zingchart(gauge type) which displays random numbers from 1 to 100 using JS. I need to achieve the same via PHP. How can I do this? What are the necessary changes that needs to be done? window.feed = function(callback) { var…
0
votes
1 answer

How to use my own external data with Zingchart?

I am designing a website using wix but also some embedded JavaScript and HTML to learn those languages. I am using this tutorial https://www.zingchart.com/docs/tutorials/loading-data/using-json-data but when I change the data url to my data I get…
I Oldwood
  • 1
  • 1
0
votes
1 answer

Zingchar - using rules with scatter chart

I am using zingchart's scatter chart to visualize my datas. I want to change color of some datas with value greater than for example 60. Is it possible? Here is my code, but it doesn't work: var myConfig = { "type": "scatter", …
Kali26
  • 91
  • 1
  • 1
  • 9
0
votes
0 answers

Angular 8 How to use zingchart? And set values and some others settings?

I created a radar by following an example: radarZing.html Radar Zing
Chuttle
  • 27
  • 2
  • 10
0
votes
1 answer

How to get animated charts in a fluid like manner with zingchart?

I am trying to display the charts using Angularjs tags and its working properly but the animation is not working for me and if there is any way to make the animation in a continuse manner. Any suggestions, please Thank…
Minh
  • 25
  • 9
0
votes
1 answer

Line Chart Hide All Series By Default

I'm using zingchart line chart and I have more than 20 series. When the chart loads it show all series and when i click on one of them it hides. How can i make all series hide on load by default and show the one i click only?
zontrakulla
  • 87
  • 1
  • 11
0
votes
1 answer

Cannot set property 'values' of undefined

I'm using zingchart gauges in my code. My problem is that I can't change the gauge value dynamically. I'm getting this error: Cannot set property 'values' of undefined I'm using flask API. How can I change this variable value with flask API? Do…
0
votes
1 answer

Zingchart-angularjs - get data on click event

I am using Zingchart into AngularJs app. I have a Bar chart where scale X defines list of user_type and in the scale Y defines the number of users. I need to get the couple (X, Y) in each bar click and doing a link to other view. How can I do that ?
S.Akrem
  • 71
  • 11
0
votes
1 answer

String containing '%d' being converted to 'NaN'

I am rendering ZingChart inside react-native webview. I need to access zingchart's token using %data-day but whenever i try to use %d it prints NaN Below is the sample code: import React, { Component } from 'react'; import { Text, View, WebView }…
Deepak Verma
  • 373
  • 7
  • 19
0
votes
2 answers

push more than one elements at same index in array

how to push more than one element at one index of a array in javascript? like i have arr1["2018-05-20","2018-05-21"]; arr2[5,4]; i want resulted 4th array to be like: arr4[["2018-05-20",5],["2018-05-21",4]]; tried pushing like…
Deepak Verma
  • 373
  • 7
  • 19