Questions tagged [zoomcharts]

ZoomCharts is JavaScript chart and graph library utilising HTML5 features to bring highly interactive charts and graphs to web applications.

ZoomCharts is a fresh visualization library, started in 2013, backed by VC funding. Aim is to deliver stunning charts and graphs to web applications with full multitouch and retina support, utilising what HTML5 offers and focusing on cross device/platform compatibility.

Before asking question, make sure to review the extensive documentation on ZoomCharts.

Use this tag to ask questions about integrating this library into different environments, challenging styling requirements, advanced binding with other js components, and other questions that are related to development with ZoomCharts. Also, use this tag to ask questions about integration with different backends. However, as ZoomCharts covers UI part and works with JSON data, backend related questions should have proper DB tag attached.

47 questions
0
votes
1 answer

ZoomCharts -> NetChart -> How to get list of filtered nodes after chart.updateFilters() is completed

I am using NetChart from ZoomCharts, It provides an option to filter nodes by providing a function in nodeFilter argument which is called by chart.updateFilters(). I want to know if there exists an event that is fired after updateFilters is…
SJxD
  • 239
  • 1
  • 3
  • 10
0
votes
1 answer

How to render link label over the node and its label in Zoomchart netchart

I am creating Netchart using Zoomchart library. When I hover the link, link label is showing but behind the Node and its label, but I want link label should show at the top whenever I hover the link.
0
votes
1 answer

ZoomCharts NetChart: Multiple links with the same ID will be merged warning message

I'm working on some user's information to represent data in a network chart. And data nodes/links are loading dynamically. When child node data is loaded then child node-link info is replacing parent node-link information. That is giving me a…
Lakhwinder Singh
  • 5,536
  • 5
  • 27
  • 52
0
votes
1 answer

Zoomchart net chart form links issue

I'm using the Zoomchart library's NetChart class to form netchart. But I'm facing issue with links. And not able to find any solution. Below is the case which I want to achieve:- Let suppose we have two nodes A and B. Here A is the seller and B is…
Lakhwinder Singh
  • 5,536
  • 5
  • 27
  • 52
0
votes
1 answer

Manipulate ZoomChart charts from DOM

In a website ZoomCharts are integrated and I want to mask the prices in the chart like $99 to $xxx via content script of chrome extension. But I could not find any numerical value on the chart in the DOM
Salman Arshad
  • 343
  • 6
  • 23
0
votes
1 answer

how to create single link in zoomcharts even though there are multiiple links between two nodes but all the link details must be available

var data = { "nodes": [{ "id": "n1", "loaded": true, "style": { "label": "Node1" } }, { "id": "n2", "loaded": true, "style": { "label": "Node2" } …
0
votes
1 answer

Page scrolling issue in zoom chart

I'm using zoomcharts geomap in a div in my page. While I place the cursor over the map and scroll, then the map will zoom. I want to disable the zoom functionality and I want to scroll the page if I scroll while cursor is over the map. I tried to…
knbibin
  • 1,099
  • 7
  • 18
  • 36
0
votes
1 answer

How to set pie chart each slice height using Zoomcharts

i need to set each slice height based on value which am passing. I need to plot a pie chart like this Pie Chart
0
votes
1 answer

How to change links in zoomcharts to be fold-line?

fold-line-pic How to change links in zoomcharts to be fold-line? I've attached a detailed drawing of fold-line. Thanks for help!
Henry
  • 3
  • 5
0
votes
1 answer

How to make all nodes in a line when using netchart of zoomcharts

In the pic that all node not in a line. I want all the nodes in a line within the netcharts,not incline as showed in pic. Which property of zoomcharts is used for disable incline? Thanks for help.
Henry
  • 3
  • 5
0
votes
1 answer

Add custom parameter to info.contentsFunction

I need to be able to add some custom info to the pie.info.contentsFunction in Zoomcharts. I have multiple charts on the page, each one created like so... var pc = new PieChart({ pie: { innerRadius: 0.5, …
dinologic
  • 64
  • 8
0
votes
1 answer

Increasing the margin between two clusters in a facet chart?

In Zoomcharts, how can we increase the spacing between two clusters in a facet chart to make it look two separate entities?
0
votes
1 answer

#ZoomCharts, drill down donut

In your drill down donut, if I drill down to sub-level item, the items with zero-values are filtered out. Is it possible to keep the zero-values item in filter content ? Because I have to compare the Year-to-day value of all items with the last…
power
  • 1
  • 1
0
votes
1 answer

How can I get slice colors of piechart in ZoomCharts?

After call drawchart function, how can i get particular slice color of PieChart of Zoomcharts. Is there any method that give me current color of Slice.
0
votes
1 answer

Zoomcharts - Using Geochart as a parentChart for netchart

We're trying out Zoomcharts' Geocharts to plot nodes. It turns out that there are nodes with coordinates (A) and nodes (B) that are connected to (A) but don't have coordinates of their (B's) own. At first we'd tried using OpenLayers (without…