A new feature in the next coming TeeChart Pro update is a new TeeAnimation class to perform animated transitions between the different Bar series stacking styles. Creating the animation: var a : TSeriesTransition; a:=TSeriesTransition.Create(Self); a.Chart:=Chart1; Optional animation settings: a.Duration:=300; // milliseconds a.TimingStyle:=atInOut; a.Timing:=atCubic; Playing the animation: a.Before; Series1.MultiBar:=mbStacked; a.After; Download: Executable demos (VCL and Firemonkey) […]
Month: August 2014
GIS Map layers example using TeeChart World series (VCL and Firemonkey)
TeeChart Pro includes World and Map series classes to visualize GIS (Geographical) data, with several ways to create or import “layers” made from ESRI(tm) SHP ShapeFiles, Google KML paths and simple Placemark text files. See below the link to download the source code of an identical example for VCL and Firemonkey (FMX) frameworks, for Delphi […]
Navigator map for TTree diagramming control
Following a request from a customer at TeeChart UserVoice (see this link), we’ve implemented a “navigator map” for TTree. TTree (see picture) is a diagramming /flow-control component included in TeeChart Pro for VCL and FireMonkey frameworks. This Navigator map is a control that displays a view of the (potentially huge) TTree contents and allows clicking […]