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 nested pie: customising chart

How can I get a nested ZingChart pie chart to (a) start at 12 o'clock, and (b) have different colours for the rings? I've tried using the plot.styles array for the colours, and the refAngle for the starting angle, but those only seem to apply to…
Sean
  • 14,359
  • 13
  • 74
  • 124
0
votes
1 answer

Zingchart-gaugechart display first and last section only

I using ZingChart to do gauge chart. The chart only display first and last section only. Two section missing in between. I have 5 values, but I want to display for 4 value only. So, I created 4 rules for ring(arr_ringrules) and plot(arr_plotrules)…
Premlatha
  • 1,676
  • 2
  • 20
  • 40
0
votes
1 answer

Python, Zingchart

def algorithm(): model = { 'crit_value': 1.5, 'max_value': 2, 'org_values': [-0.9, -1.85, 1, -1.9, 0.75, 0.5, 3, -2, 1.3, -1.5, -0.9, 1.7], 'limited_values': [] } return model def…
theresa
  • 13
  • 2
0
votes
1 answer

Custom tooltip in zing charts tree diagram to visualize values rather than %node-value,

Is there any way to implement a custom tooltip to visualize my values attached to the particular node? For example {id:"1",name:"Socialmedia",gbw:123,mbw:365,parent:"0",value:150} These are values attached to a particular node in my tree. when on…
Sindujan Nirmalan
  • 470
  • 1
  • 8
  • 18
0
votes
1 answer

Changing csv url in zingchart

I have a page that clients can upload their csv files, save it to the server, then ajax will pass the location of the csv. Question is I can't find a way for zingchart to reload with a new csv url, tried many ways in the document, below is my…
Jon4thanPP
  • 27
  • 7
0
votes
1 answer

Only show the most recently received n datapoints with ZingChart without ever resetting

I am trying to write a real-time data display for scientific data. I have a sever that is logging the data to a file so I don't care about keeping values past a window of about 15 minutes. I have not found a way to both toss the data points older…
0
votes
2 answers

How to configure ZingChart width and height?

I'm trying to use ZingChart. Trying to build gauge widget. Question is for those who worked with zingChart. How to configure width and height of space around chart. So here is what i'm saying about: White container is a div with 100% width and…
WhoIsDT
  • 695
  • 2
  • 9
  • 27
0
votes
0 answers

Zingchart not pulling data from MariaDB

I am trying to build some ZingCharts with weatherdata from a homemade weatherstation. Currently I am using Google Charts, but would rather use Zing as it seems a whole lot easier to work with. Except, I can't get it to pull data from my Database.…
tristan202
  • 1,081
  • 3
  • 19
  • 28
0
votes
1 answer

Remove space on bar ZingChart

I'm making a chart here and I have a little problem with removing the distance between the boxes var myConfig = { type: 'bar', legend: { layout: "x4", overflow : "page", …
APSB
  • 577
  • 4
  • 11
  • 28
0
votes
1 answer

Is it possible to build round bar chart with Zingchart?

Is it possible to build a round bar chart or radial bar chart with zingchart. Something like this. Apexchart
Adebayo
  • 13
  • 6
0
votes
1 answer

How to give one object from an array of objects to zingchart?

Consider I have an array of objects with the following structure var dummyArray = [ {diff: "0.000", totalLength: 3}, {diff: "0.001", totalLength: 3}, {diff: "0.002", totalLength: 4}, {diff: "0.003", totalLength: 2}, {diff: "0.004", totalLength:…
srinath
  • 43
  • 4
0
votes
1 answer

Chart not updating on state change

I'm using ZingChart to visually represent data, but it seems that the chart is not updating when state changes. My chart config is very simple: //in constructor() const { data } = props; this.state = { chartConfig: { type: 'area', …
adxl
  • 829
  • 1
  • 9
  • 19
0
votes
1 answer

zingchart heatmap not show all hours on y axes

I have 24 hours format values on y axis.I want to display all 24 hours on y-axis.But in heatmap using zingchart display hour in gap of 3 as shown in image. So,what is the setting required to display all hours on y axes.
0
votes
1 answer

ZingChart X-axis labels do not evenly space

I am trying to get the X-axis (time) scaling to be consistently even. Depending on the range I input to the graph (could be 1 hour, could be 11 hours), the spacing will not stay consistent. As in the example below, for a two hour period, you would…
phuz
  • 51
  • 1
  • 6
0
votes
1 answer

How to use zingchart maps modules in Vue.js?

I am searching in the documentation but i not find any examples for using the maps modules with zingchart-vue Really I am using Nuxt, but i supose that its same...
Jose
  • 11