angular-google-charts icon indicating copy to clipboard operation
angular-google-charts copied to clipboard

Title not working in Gantt Chart.

Open prasadsheetal opened this issue 3 years ago • 3 comments

Bug Report

Prerequisites

Please answer the following questions for yourself before submitting an issue. YOU MAY DELETE THE PREREQUISITES SECTION.

  • [x] I am running the latest version
  • [x] I checked the Readme and found no answer
  • [x] I checked to make sure that this issue has not already been filed
  • [x] This is related to angular-google-charts and not to Google Charts directly (if it's a Google Charts issue, their forum may help)

Description

A clear and concise description of what the bug is.

To reproduce

Steps to reproduce the behaviour:

  1. Go to '...'
  2. Click on '....'
  3. Scroll down to '....'
  4. See error

Expected behaviour

A clear and concise description of what you expected to happen.

Exception or Error





Your environment



Anything else?

Add any other context about the problem here.

prasadsheetal avatar Apr 13 '22 15:04 prasadsheetal

Can you share some code snippets?

umernaeem217 avatar Apr 13 '22 16:04 umernaeem217

this.charts.push({ title: 'Gantt Chart', type: ChartType.Gantt, // columns: ['Task ID','Task Name','Start Date','End Date','Duration','Percent Complete','Dependencies'], data: [ ['Research', 'Find sources', new Date(2015, 0, 1), new Date(2015, 0, 5), null, 100, null], ['Write', 'Write paper', null, new Date(2015, 0, 9), daysToMilliseconds(3), 25, 'Research,Outline'], ['Cite', 'Create bibliography', null, new Date(2015, 0, 7), daysToMilliseconds(1), 20, 'Research'], ['Complete', 'Hand in paper', null, new Date(2015, 0, 10), daysToMilliseconds(1), 0, 'Cite,Write'], ['Outline', 'Outline paper', null, new Date(2015, 0, 6), daysToMilliseconds(1), 100, 'Research'] ], options: { height: 275 } });

prasadsheetal avatar Apr 13 '22 16:04 prasadsheetal