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 800

Summary: Support for superscript <sup></sup> and subscript <sub></sub> html tags when TextFormat is set to ttfHtml
Product: VCL TeeChart Reporter: yeray alonso <yeray>
Component: CanvasAssignee: Steema Issue Manager <issuemanager>
Status: RESOLVED NOTABUG    
Severity: enhancement CC: jpmignot
Priority: ---    
Version: 140512   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
Chart Series: --- Delphi / C++ Builder RAD IDE Version:

Description yeray alonso 2014-06-16 08:38:58 EDT
This doesn't show the text as superscript:

procedure TForm1.FormCreate(Sender: TObject);
begin
  Chart1.Title.TextFormat:= ttfHtml;
  Chart1.Title.Text.Text := 'Test <sup>Title</sup> with <b>HTML</b> formatting';
end;
Comment 1 yeray alonso 2016-04-28 07:47:17 EDT
<super></super> tag is handled for superscript instead of <sup></sup>.
Just added <sup></sup> to do the same than <super></super>.

subscript <sub></sub> is already implemented and working.