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 - Support for superscript <sup></sup> and subscript <sub></sub> html tags when TextFormat is set to ttfHtml
Summary: Support for superscript <sup></sup> and subscript <sub></sub> html tags when ...
Status: RESOLVED NOTABUG
Alias: None
Product: VCL TeeChart
Classification: Unclassified
Component: Canvas (show other bugs)
Version: 140512
Hardware: PC Windows
: --- enhancement
Target Milestone: ---
Assignee: Steema Issue Manager
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-06-16 08:38 EDT by yeray alonso
Modified: 2016-04-28 07:47 EDT (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 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.