Is it possible to achieve this kind of layout as swimlanes?

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
richfit
Newbie
Newbie
Posts: 6
Joined: Tue Dec 24, 2013 12:00 am
Contact:

Is it possible to achieve this kind of layout as swimlanes?

Post by richfit » Thu Jan 02, 2014 3:29 am

Hi
I am using the latest version of TeeChart Pro 2013 VCL on Delphi.

Is it possible to achieve this kind of layout as swimlanes?
If possible, only one or multi teechart can achieve this effect?

Many thanks in advance

Richfit
Attachments
lane.png
lane.png (45.35 KiB) Viewed 4078 times

Yeray
Site Admin
Site Admin
Posts: 9601
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: Is it possible to achieve this kind of layout as swimlanes?

Post by Yeray » Fri Jan 03, 2014 11:13 am

Hi Richfit,

I'd suggest you to take a look at the features demo examples. They will show you how to use the majority of features you'd need to achieve a similar chart as the one in your picture.

- I'd use THorizLineSeries as the series type. It has a Pointer property you could set Visible:=true. It also has the LinePen property, which can be used to make the pen wider (LinePen.Width:=3) or dashed (LinePen.Style:=psDash)
Ref: Features Demo example at "All features\Welcome !\Chart styles\Standard\Horiz. Line"

- I'd use the TSeriesBandTool to highlight the area between two series.
Ref: Features Demo example at "All features\Welcome !\Tools\Series Band"

- Depending on the exact needs I'd use CustomAxes, SubCharts or just ColorLines to divide the chart.
Ref: Features Demo example at "All features\Welcome !\Axes\Opaque zones"
Ref: Features Demo example at "All features\Welcome !\Tools\SubCharts"
Ref: Features Demo example at "All features\Welcome !\Tools\Color Line"

- You also have several options for the square on the top. You can use a CustomLegendTool, Annotations or custom drawing techniques.
Ref: Features Demo example at "What's New ?\Welcome !\New Chart Tools\Custom Legend Tool"
Ref: Features Demo example at "All features\Welcome !\Tools\Annotation"
Ref: Features Demo example at "All features\Welcome !\3D Canvas\Shape class"
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

Post Reply