All Questions
Tagged with google-visualization angular
120 questions
1
vote
1
answer
198
views
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 ...
0
votes
0
answers
363
views
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 ...
0
votes
1
answer
150
views
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 ...
0
votes
1
answer
449
views
Pass data from HTML element to angular component to draw chart based on the data
I am developing a custom dashboard where I display some metrics based on a use case. I want to display these metrics in a tabular format for each use case where each use case many rows of data and a ...
0
votes
1
answer
230
views
How to get childrenIndexes of a node in Angular Google Charts (OrgChart)?
I am using angular google charts to draw an org chart. Everything works fine, but I cannot use the method getChildrenIndexes(row) of the library. If anyone can help me with a way to get child indexes ...
0
votes
0
answers
114
views
Angular is it possible to translate content of tooltip in Google Gantt Chart
My html looks like that:
<google-chart #chart
[title]="title"
[type]="type"
[data]="data"
[columns]="columnNames"
[options]="options"...
0
votes
1
answer
393
views
How to access Angular component property from a Google Charts callback
Using angular-google-charts (Angular 13.2), I need to create a TreeMap with a custom tooltip. The GoogleChartComponent has an options property named generateTooltip that takes a callback function. ...
1
vote
0
answers
371
views
How to fix Row 0 given with size different than 0 error in Google charts?
I am working with google charts for the first time and I have no idea about the errors of this library. Please guide me where I am wrong.
let initFlag = (this.leaderBoardData == null) ? true : ...
0
votes
1
answer
50
views
How can I make human readable a google chart line with large variations?
The image graph represents the number of users per day over two years (730 days). At the moment it is far from being human readable. How can I make it more human readable?
The options on the chart at ...
0
votes
1
answer
385
views
Show Axes text vertically besides column in ng2-google-chart
I am using ng2-google-charts - 4.0.0 version. I want to display hAxis text beside the column.
I tried using slantedText and slantedTextAngle but, it does not support inside the chart.
It would be good ...
1
vote
1
answer
307
views
Google Charts domain annotationText not appearing (line chart)
The following annotation text does not appear when mousing over the annotation. I am trying to make a domain level annotation. I was able to make it work on the individual data point, but I need the ...
0
votes
1
answer
427
views
How to draw google chart with data imported from angular service?
I am working with google charts and google with the data is being pulled from mongodb via express
I am facing error in using the data extracted by angular service
Here is system.service.ts
import { ...
0
votes
1
answer
332
views
Angular - Render Google chart on a different page
Basically, I have two components page1 and page2 and I would like to draw a google Gantt chart on the second page.
However, when switching to page2 nothing is rendered.
From what I understand you must ...
1
vote
1
answer
570
views
Angular Google Chart - angular-google-charts - Line Chart - hAxis gridlines color not working
I'm using angular-google-charts and I dont' know why I'm not able to change the color of hAxis gridlines.
This is my component:
import { Component, OnInit } from '@angular/core';
@Component({
...
1
vote
1
answer
46
views
Show Value in Goole charts using Angular .TS
Am suing Google charts in Angular and am facing some difficulties when trying to apply the Google Documentation examples as am new to frontend and not familiar much with JS where in Angular am using ...