Hi,
Just purchasing and testing the Pro Tools and I have a query on using the Cursor and ScrollPager Tools.
With the Cursor Tool, I have a vertical cursor set. I want the annotation callout to show the X-Axis value, which is a Date. The Series is built from an ADO SQL datasource. The main X-Axis shows the retrieved Date values correctly, but the Annotation on the Cursor never shows the X-Axis Value - it always starts at 30/12/1899 for the left most mark and increments by 1 day for each mark. The attached screenshot shows an example - you will see the X-Axis ranges from 15/05/2015 to 19/05/2015, but the Annotation shows 04/01/1900. How can I get the annotation to show the X-Axis date value?
With the ScrollPager, is there a simple way to prevent the ScrollPager from being Copied/Printed/Saved when using the TeeCommander buttons? I only want the ScrollPager to be seen on the terminal display and not saved, printed etc. Is there a way to to this?
Thanks
Clive
Query on Cursor and ScrollPager Tools
Query on Cursor and ScrollPager Tools
- Attachments
-
- CursorTool Annotation
- Screen Shot 2016-04-01 at 11.29.24.png (135.65 KiB) Viewed 8302 times
Re: Query on Cursor and ScrollPager Tools
Hello Clive,
Please, try to open different threads to report different issues from now on.
- Cursor Tool:
I've created a new TChart with a TLineSeries with pointer active and some datetime sample values; I've added a TCursorTool to the chart and activated its Annotation.
It seems to work fine for me here:
- ScrollPager Tool:
Have you tried to disable the ScrollPager Tool before copying the chart? Ie:
Please, try to open different threads to report different issues from now on.
- Cursor Tool:
I've created a new TChart with a TLineSeries with pointer active and some datetime sample values; I've added a TCursorTool to the chart and activated its Annotation.
It seems to work fine for me here:
- ScrollPager Tool:
Have you tried to disable the ScrollPager Tool before copying the chart? Ie:
Code: Select all
procedure TForm1.Button1Click(Sender: TObject);
begin
ChartTool1.Active:=false;
Chart1.CopyToClipboardBitmap;
ChartTool1.Active:=true;
end;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Query on Cursor and ScrollPager Tools
Hi, thanks for the replies.
I still cannot get the Cursor tool to correctly display the Annotation as the Date value from the X-Axis.
Would it be possible for you to send me a copy of your sample project that you used to create the above image and hopefully I can figure out what is different in my chart setup.
Regards
Clive
I still cannot get the Cursor tool to correctly display the Annotation as the Date value from the X-Axis.
Would it be possible for you to send me a copy of your sample project that you used to create the above image and hopefully I can figure out what is different in my chart setup.
Regards
Clive
Re: Query on Cursor and ScrollPager Tools
Hi Clive,
Of course. Here it is:CVP99 wrote:Would it be possible for you to send me a copy of your sample project that you used to create the above image and hopefully I can figure out what is different in my chart setup.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Query on Cursor and ScrollPager Tools
Hi,
Thanks for the prompt reply.
I was setting XLabelsSource instead of XLabelsValues!
Thanks
Clive
Thanks for the prompt reply.
I was setting XLabelsSource instead of XLabelsValues!
Thanks
Clive