Questions tagged [angular2-highcharts]

For questions directly related to angular2-highcharts library.

angular2-highcharts is a Highcharts wrapper providing charting components for Angular

238 questions
0
votes
1 answer

How to add icon/svg/image on X-axis for bar graph onclick event using highcharts?

I need to show selected bar x-axis label color as different to other bar as well as add icon to that user can easily identifies that selected bar in graph. I achieve to change a label color of x-axis on click x-axis but 1.how to add icon/image to…
Soumya Gangamwar
  • 954
  • 4
  • 16
  • 44
0
votes
1 answer

Highcharts nodes are not rendered wide enough

I have a highcharts-angular organizational chart where when there are a lot of nodes in the chart, the boxes get smaller and their text is hidden. How can I make the chart expand (and a horizontal scrollbar to show) as much as needed so everything…
0
votes
0 answers

High charts grouped bars getting clipped in columns

I am pretty new to Highcharts and i have below questions. JsFiddle : https://jsfiddle.net/j5xnghde/5/ The columns for Jun and August months are getting clipped. It does not show the Tokyo column for June and Newyork column for August month. How…
Mohammed Aamir K
  • 311
  • 5
  • 17
0
votes
1 answer

Highcharts stacked Funnel chart with horizontal stacking

We want a visualization looks like this in Highcharts. Can anybody help me with the implementation, I am also trying, once I get to it I will update my answer, just trying to see if anybody can help me do it faster. Click for the solution…
Sai Babu B
  • 162
  • 2
  • 14
0
votes
1 answer

Modify the color of series in highcharts-ng

I have an AngularJS application in which I am using highcharts-ng version 0.0.86. I am trying to implement a feature where the user will set the color of the series after the chart is generated. I am trying to update the series color(from the…
0
votes
1 answer

$("#highcharts-2i5ujpv-2").highcharts() is undefined

I have an AngularJS application in which I am using highcharts-ng version 0.0.86. I am generating the highchart by the following code The chart gets properly generated with this dynamic id…
0
votes
1 answer

HighCharts - Angular 7 - Sunburst drillup event not triggering

Im using highcharts-angular library for rendering a sunburst chart. Im able to drill down and capture the event by using the click event. But im not able to capture the drill up event when i click on the back button. i tried using the drillup event,…
0
votes
1 answer

Highchart yAxis.ceiling not working properly

I have these 2 fiddles: https://jsfiddle.net/ny6wk3cm/ ceiling not working and https://jsfiddle.net/ap7rswyc/ ceiling working. I can see the ceiling not working properly for the first one, while it's working fine for the second fiddle, which seems…
0
votes
1 answer

Angular 8 highcharts How to pass custom data to drilldown event in Highcharts

I am new to Angular and was trying to implement below. I have created a data object in Angular component @.. ... export class MyComponent{ drilldownDataSeries : { 's1' : { ... }, 's2' : { ... } } then want to use this object in drilldown…
Roohafza
  • 79
  • 1
  • 7
0
votes
1 answer

Chart configurations in case of high number of legends

In our project we are using Pie chart. When Series count is less then 10-15, all slices are displayed fine, but as more values are added into the series Chart starts to shrink and Legends also show overflow arrow. So, we are working on a requirement…
Dev's
  • 27
  • 5
0
votes
2 answers

Highchart - Dual Axes Line chart issue

Is it possible to create chart like below diagram , I am unable to do so for the line chart. Kindly suggest
poojagupta
  • 982
  • 2
  • 12
  • 26
0
votes
1 answer

Legends in variable radius pie Highcharts

I want to implement variable radius pie chart in my application using Highcharts.js. But I could not find legends option in their demo example and in the documentation as well. Can anybody please help me out with how to implement legends in variable…
abhiJ
  • 26
  • 5
0
votes
1 answer

highcharts fixed point width is not working when a series is hidden

Expected behaviour: bar / point width should be always same even after showing and hiding a series Actual behaviour: bars width is not same, middle bar is squeezed. Live demo with steps to reproduce: access the below fiddle and click on series 2 on…
0
votes
1 answer

Add a line on each bar for stacked and grouped column in HighCharts

I want to add a red line on each stackbar. Refer the pic below. If you notice in the picture there is a red line on top of each stackbar. I have tried many workaround but none of them works. Could anybody have idea how to achieve this? Pasting the…
Rafique Mohammed
  • 3,666
  • 2
  • 38
  • 43
0
votes
1 answer

HighCharts menuItem value not updated

I need to translate my highcharts when the user selects a different language. I have a chartservice that listens to the translationService and assign the value received from translationService to downloadCSV attribute of chart. here is the…