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

Highcharts how to enable scrollbar without setting min or max

As mentioned here in this answer enabling scrollbars on a highchart axis is a fairly easy process of simply enabling following options: Option 1 You will need to use highstock.js and instead of rendering a stock chart, you have to render a…
Saif
  • 1,745
  • 5
  • 23
  • 46
0
votes
0 answers

flags in highcharts are getting misplaced

When we are giving dynamic continuous data flags are going misplaced and interupting ther graph please help in this and i also want the flags should get diaapear when the latest flag arrives
0
votes
1 answer

How to add flags to countinuous update angular highcharts

I tried to add flags for loading dynamical data that worked at first when I used the continuous update charts as follows https://www.highcharts.com/stock/demo/dynamic-update and then the flags as follows…
0
votes
1 answer

The continuous update highcharts with more data plotting the continuity is not visible so we need that continuity in the centre of the graph

Issue: Currently I am trying to build a live stream graph which will display data in the range of 0.5 hour to 3 hours. So the graph updates continuously, but it updates at the extreme right side of the graph. Requirement: My requirement is that I…
0
votes
1 answer

Issues with highchart responsive when pointwidth set for column chart

Is it possible to make column chart responsive when viewed on small screen? i have set pointwidth to 120 property in plotOptions when i view it in small screen like mobile or tablet column bars gets one over other. Is there way to render chart view…
0
votes
0 answers

Object literal may only specify known properties, and 'center' does not exist in type 'IndividualSeriesOptions'

I am using angular-highcharts to create multiple pie graphs, in that I want apply some properties to both the graphs different-different, like center, showInLegend and startAngle. but its giving an error for all the 3 properties, as it is not…
0
votes
2 answers

Async Drill-down not updating of HighCharts

I am working on updating HighCharts stack bar charts dynamically along with their drilldown charts but I am stick to one problem that async drilldown not getting updated. In my scenario series data is completely dynamic and also corresponding…
0
votes
2 answers

An alternative way of displaying the negative values on the column chart

I wonder if there's an alternative way of displaying the negative values on the column chart. The bottom most value on the y axis should be the lowest value. The columns on the graph should grow from the bottom and upward to their corresponding…
0
votes
1 answer

Stacked bar chart colors in case of Drilldown (open on click of Line chart)

I have little issue on drill-down API of HighCharts In which I Created a Line Chart and on it's point click drill-down to stacked bar chart, I have a success so far but the stacked color is same for each column. The drill down column are complete…
Nazir Ahmed
  • 615
  • 4
  • 14
  • 29
0
votes
1 answer

Y-axis on large negative and small positive values in High Charts

At first my data serie values is completely dynamic it can contain any range of values so tickAmounts or tickInterval doesn't work out for me and also adding multiple y-axis for single data series didn't help. In my scenario issue occurred when…
Nazir Ahmed
  • 615
  • 4
  • 14
  • 29
0
votes
1 answer

Plot Option in High Charts

I use "Column" type High chart to Show two different data sets in my application. Both data are marked in a same column chart as different series. But I need to set two various plotOption{} for the graphs. Highcharts is throwing error if I set the…
Shylesh
  • 65
  • 9
0
votes
1 answer

Highcharts SVG difference with Node JS SVG

Status: I can create an SVG with Node JS + Highcharts 6.2 just fine. Problem: The exported SVG does not look good, not the same as if I export it from a JSFiddle sample https://jsfiddle.net/9gx7u4nw/ JSFiddle: https://jsfiddle.net/9gx7u4nw/ Node JS…
DavidDunham
  • 1,245
  • 1
  • 22
  • 44
0
votes
1 answer

High Charts - Show series data of Multiple Charts

I have created a Highchart for Ionic App, which has Bar Graph, Spline and Line all plotted in the same graph. I'm able to see the Series label of only one Graph at a time when I hover my mouse over the Data. I want the series Label of all the chart…
0
votes
1 answer

Sync max min between many highcharts charts (in real time)

First of all I know about the sync tables example here: https://www.highcharts.com/demo/synchronized-charts This is good but in my tables the Y axis is the same for all of the charts, the only problem is that each few seconds I dynamically add a…
kfir124
  • 1,286
  • 4
  • 14
  • 27
0
votes
0 answers

Can't render charts in angular 6

I ran the highcharts demo app and it runs fine. I created a variable called chartOptions in app.component.ts. This variable holds the json which I got from the highcharts cloud. When I bind this variable to options in Highcharts, the chart is not…