Hello,
Axis title text doesn't obey html format
As you can see on that picture the frame behaves correctly but the text dose not breaking the line ( <BR> tag ).
Best Regards,
Grzegorz
Axis title text doesn't obey html format
Re: Axis title text doesn't obey html format
Hello,
Have you set TextFormat to ttfHtml?
If you still find problems with it, please arrange a simple example project we can run as-is to reproduce the problem here.
Have you set TextFormat to ttfHtml?
Code: Select all
Chart1.Axes.Left.Title.TextFormat:=ttfHtml;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Axis title text doesn't obey html format
Yes I've set .
The problem appear when you switch from GDI+ to GDI render.
Best Regards,
Grzegorz
Code: Select all
TextFormat:=ttfHtml;
The problem appear when you switch from GDI+ to GDI render.
Best Regards,
Grzegorz
- Attachments
-
- TeeChartTestCase4.zip
- (90.06 KiB) Downloaded 686 times
Re: Axis title text doesn't obey html format
Hello technicon,
Unfortunately, I can't reproduce the problem you experiencing using the code below with TeeChart Pro VCL/FMX build 2016.19.161025:
Could you check the code above and confirm your results?
Thanks in advance
Unfortunately, I can't reproduce the problem you experiencing using the code below with TeeChart Pro VCL/FMX build 2016.19.161025:
Code: Select all
void __fastcall TForm1::FormCreate(TObject *Sender)
{
Chart1->View3D = false;
Series1->FillSampleValues(100);
//CharthtmlFormat
Chart1->Axes->Left->Visible = true;
Chart1->Axes->Left->Title->Text = "Html text";
Chart1->Axes->Left->Title->TextFormat = ttfHtml;
TeeGDIPlus1->TeePanel = Chart1;
CheckBox1->Checked = true;
}
//---------------------------------------------------------------------------
void __fastcall TForm1::CheckBox1Click(TObject *Sender)
{
if (CheckBox1->Checked)
{
TeeGDIPlus1->Active = true ;
}
else
{
TeeGDIPlus1->Active = false;
}
}
Thanks in advance
Best Regards,
Sandra Pazos / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
Re: Axis title text doesn't obey html format
Yes I can confirm
But You have to use html tag <BR> in text eg.
GDI+ enable
GDI+ disabled
Best Regards,
Grzegorz
But You have to use html tag <BR> in text eg.
Code: Select all
Chart1->Axes->Left->Title->Text = "Html<BR>text";
Grzegorz
Re: Axis title text doesn't obey html format
Hello Technicon,
Many thanks for the update information.
After reviewing that again, I would like inform you the proble is already added in TeeChart VCL bugzilla tracker. Here's the link: http://bugs.teechart.net/show_bug.cgi?id=1343.
Feel free to add your mail to the ticket CC list to be automatically notified when an update arrives.
Thanks in advance
Many thanks for the update information.
After reviewing that again, I would like inform you the proble is already added in TeeChart VCL bugzilla tracker. Here's the link: http://bugs.teechart.net/show_bug.cgi?id=1343.
Feel free to add your mail to the ticket CC list to be automatically notified when an update arrives.
Thanks in advance
Best Regards,
Sandra Pazos / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |