0
votes
1answer
25 views

Highcharts piecharts no data display

Hi i am using highcharts pie charts. i am geting the series data from a text file.if i have no data in text file , can i display 'no data' text display at the >center of the circle
0
votes
0answers
44 views

Issue with Highcharts pie charts with frameset

I am using highcharts pie charts. I am displaying 4 pie charts in single page with different series of data. It's working well and good. But if im using frameset and calling those pages inside that ...
0
votes
1answer
59 views

Highcharts: Polar columns datalabels inside position

I'm trying to get values (datalabels) of a columns polar chart INSIDE the actual column, and not on top of it. I've set inside: true property but it does not seem to have any effect, although it works ...
0
votes
1answer
154 views

Plot data values inside pie charts slice

How to add a data values inside the slice in pie chart.Can any one help me in this? whether this is possible?
1
vote
0answers
147 views

Highcharts - Pie chart does not display slices

Odd one. I'm calling my pie chart, and when I do the grey background, data pipe connectors, and hover data with the numbers all show fine on the background. But no pie slices will show. However, if ...
1
vote
1answer
122 views

Highcharts: Change Pie Colors By Clicking on a button

I would like to know if anyone can figure out how I can change this line chart to a pie chart and still make the button change the color of the pie color like it did the line color? ...
0
votes
3answers
221 views

Highcharts, exclude data point from legend on pie chart

How can I exclude one specific data point from legend on pie type of chart, but show all others?
0
votes
0answers
537 views

HighCharts Pie Chart - Add text inside each slice

I am creating a financial pie chart using HighCharts that represents asset allocation. My goal is to create a chart that represents the actual allocation values in each slice but inside each slide ...
1
vote
1answer
263 views

Symbol-outline with pie chart -or- custom legend symbols

I have a pie chart with a white slice/segment and grey border. Unfortunately the border does not apply to the legend icon! I am wondering, if it’s necessary to style the legend symbol separately. I ...
0
votes
1answer
100 views

Highchart pie - array dynamic for dynamic pie

Below my code : $(document).ready(function() { for(var j = 0; j < productsSize; j++) { //tmStringToDisplay.push(name[j], parseInt(percent[j])); var tmStringToDisplay = ...
0
votes
1answer
828 views

How to get text from html table in pie chart (highchart)?

I am displaying data from html table to pie chart (HighChart). I want to display text which are between <th>..</th> tag of table tag. But instead of text .. it displays slice ... slice .. ...
1
vote
2answers
361 views

highcharts - is it possible to zoom pie charts

I'm wondering if it is possible to zoom in on a slice in a pie chart. My chart is modeled after this example jsfiddle example chart: { renderTo: 'container', type: 'area', ...
0
votes
0answers
599 views

Highchart multiple series reload with JSON

I have the following code: var chart; var colors; $(document).ready(function() { colors = Highcharts.getOptions().colors, name = 'Browser brands', data = []; // Build the data arrays var ...
2
votes
1answer
442 views

Highcharts pie dataLabels inside and outside

i want a pie-chart with datalabels inside and outside a pie. i know, with a negative distance it shows the label inside the pie. but i want it inside and outside. outside i want display the percentage ...
0
votes
1answer
668 views

dynamic data in pie high chart jquery

i am using high chart to draw pie chart as flow this is how i give static data this itemdata should be loaded with array dynamically Static intialization var itemdata = [ ...
1
vote
3answers
1k views

redraw pie chart in highchart

suppose I have 4 slices having 20%, 30%, 30% and 20%. If I make 4th slice(20%) inactive, the other slices should adjust themselves and occupy 100 %. how to do this in highcharts? Thank you.