Topic: Gantt Chart

Is there a way to have the Gantt Chart Panel have both horizontal and vertical scrolling?
Is there a way to hide, move or change the legend location?

Thank you,
  Robb

Re: Gantt Chart

HEllo Rob

Some functions you can apply to a graph :

- Hide a legend :   MyChart.Legend.Visible := False;   (Or True)

-  Vertically orient a text on the X-axis : MyChart.BottomAxis.LabelsAngle := 90;   // Orientation à 90° (Behind OnShow Event)

- Deactivate 3D function : MyChart.View3D := False;   (Or True)

- Save a chart in a File :

Chart.SaveToBitmapFile(const FileName: string);                  //  Save the chart as a BMP file
Chart.SaveToMetaFile(const FileName: string);
Chart.SaveToMetaFileEnh(const FileName: string);
Chart.CopyToClipboardBitmap;                                            //  Copy the graph in the pressepaper
Chart.CopyToClipboardMetafile(Enhanced: Boolean);
Chart.Print;                                                                         //  Print the chart
Chart.Preview;                                                                   //  Preview the chart

- Some formats accepted :

Chart1.SaveToBitmapFile('C:\tmp\exports\MyChart.png');
  Chart1.SaveToBitmapFile('C:\tmp\exports\MyChart.jpeg');
  Chart1.SaveToBitmapFile('C:\tmp\exports\MyChart.gif');
  Chart1.SaveToBitmapFile('C:\tmp\exports\MyChartt.bmp');

- How to save with a SaveDialog :

  Chart1.SaveToMetafile(SaveDialog2.FileName)
  Chart1.SaveToMetafileEnh(SaveDialog2.FileName)

Hope this can help you

JB