In some case I need shift down TChart with it series down. How I Can do it?
Thank You for replies.
How shift down TChart ?
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Nuzur,
Sorry but I don't understand what are you trying to achieve here. Could you please be more specific?
Thanks in advance.
Sorry but I don't understand what are you trying to achieve here. Could you please be more specific?
Thanks in advance.
Best Regards,
Narcís Calvet / 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 |
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Nuzur,
You can try changing chart's margins, for example:
You can try changing chart's margins, for example:
Code: Select all
Private Sub Command1_Click()
'TChart1.Panel.MarginUnits = muPixels
TChart1.Panel.MarginTop = 20
TChart1.Legend.TopPos = 25
End Sub
Best Regards,
Narcís Calvet / 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 |
But in this I have another problem.
I use, for example,
but it not shown on chart, what I need to do?
I use, for example,
Code: Select all
m_Chart.GetDC()->TextOut(10,10,"My text");
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Nuzur,
You should try using:
In m_Chart's OnAfterDraw event.
You should try using:
Code: Select all
m_Chart.GetCanvas().TextOut(10,10,"My text");
Best Regards,
Narcís Calvet / 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 |