Search found 1 match

by tp
Wed Feb 25, 2009 9:39 am
Forum: VCL
Topic: Duplicate a chart
Replies: 2
Views: 4814

Hello, You can also do it directly from memory. For example, in C++ Builder, assuming that vChrt1 is your source chart, this should copy chart properties and data to a new chart: #include <TeeStore.hpp> ... TMemoryStream* pStream = new TMemoryStream; SaveChartToStream(vChrt1, pStream, true, true); T...