Questions tagged [angular-google-chart]

21 questions
2
votes
2 answers

Google charts, is it possible to have 2 different vertical axis values?

For better understanding of this question, let me show a working example in TradingView webpage, on which the following chart shows the combination of Momentum (area chart) + ADX (line chart): As you can see, there are 2 vertical values, at left…
Yogurtu
  • 2,656
  • 3
  • 23
  • 23
1
vote
1 answer

Barchart with chart range filter

I'm trying to draw a barchart with chart range filter with the script and code bellow, but i'm getting 2 errors 1-One or more participants failed to draw()× 2-The filter cannot operate on a column of type string. Column type must be one of: number,…
1
vote
1 answer

Google Charts hAxis gridlines dont'work for weekly interval

Google charts should draw vertical lines for each data point - it works good for continuous dates like days, months, but when I provide dates with gaps - as sundays only - it stops to draw vertical lines after some count, even if I specify parameter…
1
vote
1 answer

On Angular 12 webapp Google Charts component make webapp very slow also after component destruction

I perfectly integrated Google charts in my Angular 12 webapp but the component that shows google chart make the webapp very slow on rendering graphical animation and movements. If I hide the Google chart component the webapp come back to be very…
1
vote
0 answers

How to change bar width of a specific series while in different axis target - Angular google charts

I am developing a layered column chart using ComboChart on Angular google charts. Although I've separated two series of bar charts in two different axis, being able to find a bar in front of the other, like needed, I can't change the width of one of…
0
votes
0 answers

Trendline with Angular-google-chart library

I'm trying to plot a line chart with trendline in angular using the angular-google-chart library. The x-axis of the graph is string values, whereas the y-axis values are numeric. Is it possible to plot a trendline(broken line in red on the image) to…
Skoby
  • 161
  • 1
  • 2
  • 10
0
votes
0 answers

Google Charts with *ngIf in Angular

I am building an Angular app where I am using google charts. Faced some issue which seems to be related to async My HTML code is:
0
votes
0 answers

Angular 15 google chart application errors on build

I have an application that works well under Angular 12. This application includes the use of google charts It keeps erroring on the build. To try to demonstrate the error I built a tutorial using only a very basic test. When I try to build this…
stoshb
  • 65
  • 1
  • 11
0
votes
0 answers

problems with a component with angular google charts inserted multiple times in another

I have this component
import { Component, Input, OnChanges, OnInit, SimpleChanges,…
kintela
  • 1,283
  • 1
  • 14
  • 32
0
votes
0 answers

Legend text are not showing for the legend position as 'bottom' for google chart

I am using google chart to draw a line chart, The chart is drawing properly but the legend text at the bottom is not showing and the VAxis ticks also.
0
votes
2 answers

Error while implementing Angular Google Chart in Angular (Type 'string' is not assignable to type 'ChartType')

I am getting this error while building project. I have install angular-google-charts using this command: chart npm install angular-google-charts --legacy-peer-deps error TS2322: Type 'string' is not assignable to type…
shyam yadav
  • 214
  • 1
  • 10
0
votes
0 answers

Angular: How to initialize google-charts component with width and height in %

I'm using the google-charts angular component and I'm passing it as a parameter [dynamic Resize]="dynamic Resize" to make the chart responsive. But the dynamic Resize just works if the width and height are with percentage and when the screen is…
0
votes
1 answer

Angular: loop it's returning me an undefined value

I'm trying to use Google Charts to draw a chat based on my array of objects. I get the array, map the values to make a loop in the objects, and insert each value in the chart. But it's not working because the value that's returning for me it's…
0
votes
1 answer

how to the first and last X axis lables in google line chart?

I have created a google line chart with the following option, but the first and last X-axis labels are NOT shown, how to fix it? hAxis: { gridlines: { count: 9, units: { days:…
Azad
  • 5,144
  • 4
  • 28
  • 56
0
votes
1 answer

Can we use CDN in angular 8 instead of installing the package?

Can we use CDN instead of installing packages in angular 8. I am trying to use Google charts in angular 8. Installation goes fine but I'm getting some errors while I serve the app and compile fails. I have even added: "skipLibCheck":true in…
1
2