Steema Issues Database

Note: This database is for bugs and wishes only. For technical support help, if you are a customer please visit our online forums;
otherwise you can use StackOverflow.
Before using this bug-tracker we recommend a look at this document, Steema Bug Fixing Policy.



Bug 2499 - Export MarksTipTool to SVG
Summary: Export MarksTipTool to SVG
Status: RESOLVED FIXED
Alias: None
Product: VCL TeeChart
Classification: Unclassified
Component: Export (show other bugs)
Version: 33.210915
Hardware: PC Windows
: --- enhancement
Target Milestone: ---
Assignee: yeray alonso
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2022-01-14 16:05 EST by yeray alonso
Modified: 2022-01-14 16:06 EST (History)
1 user (show)

See Also:
Chart Series: ---
Delphi / C++ Builder RAD IDE Version:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description yeray alonso 2022-01-14 16:05:00 EST
Add a tooltip to the generated SVG when TMarksTipTool is used in the chart.
Example:

uses Series, TeeTools, TeeSVGCanvas;

procedure TForm1.MarkTipsToSVG;
const fileName='test';
begin
  Chart1.View3D:=False;

  Chart1.AddSeries(TBarSeries).FillSampleValues;
  Chart1.Tools.Add(TMarksTipTool);

  TeeSaveToSVGFile(Chart1, fileName+'.svg', 0, 0);
  TeeGoToURL(Handle,fileName+'.svg');
end;