Search found 5 matches

by Eic
Tue Apr 10, 2018 1:55 pm
Forum: VCL
Topic: Create TimeLine
Replies: 2
Views: 6950

Re: Create TimeLine

Its' perfect.

Thank you.
by Eic
Mon Apr 09, 2018 3:34 pm
Forum: VCL
Topic: Create TimeLine
Replies: 2
Views: 6950

Create TimeLine

Hello, I'm trying to create a "timeline" chart with this code : void __fastcall TFormGraphiqueHelper::btnTimeLineClick(TObject *Sender) { int i; TDateTime tmpDate; TVolumeSeries *serie = new TVolumeSeries(Chart1); Chart1->View3D = false; Chart1->OnAfterDraw = ChartTmpAfterDraw; Chart1->View3DWalls =...
by Eic
Fri Jun 30, 2017 11:44 am
Forum: VCL
Topic: TSubChartTool and center title without AdjustFrame
Replies: 5
Views: 8677

Re: TSubChartTool and center title without AdjustFrame

Thank you for this temporary solution.

This bug will be corrected, or is it normal ?
by Eic
Fri Jun 30, 2017 10:21 am
Forum: VCL
Topic: TSubChartTool and center title without AdjustFrame
Replies: 5
Views: 8677

Re: TSubChartTool and center title without AdjustFrame

Hi, I just want my title to be centered on the graph + legend. When the line is deleted, the title is centered above the graph, without taking into account the place taken by the plenum. There may be another property to do that? I attached the file "Test 2" with the expected centering in red for the...
by Eic
Wed Jun 28, 2017 3:32 pm
Forum: VCL
Topic: TSubChartTool and center title without AdjustFrame
Replies: 5
Views: 8677

TSubChartTool and center title without AdjustFrame

Hi, I want to center the title of my subgraph with AdjustFrame = false. I use this code: TChart * Chart1 = new TChart(this); Chart1->Parent = this; Chart1->Align = alClient; TSubChartTool *SubChart1 = new TSubChartTool(NULL); Chart1->Tools->Add(SubChart1); TChart * Chart2 = SubChart1->Charts->AddCha...