Re: [Lazarus] TAChart

2015-06-04 Thread Werner Pamler
The rectangle enclosing the shown data range is called the LogicalExtent of the Chart. Therefore, store the LogicalExtent before performing a zoom in a TDoubleRect (savedExtent := Chart.LogicalExtent), and to go back you just assign it the other way: Chart.LogicalExtent := savedExtent. (The

Re: [Lazarus] TAChart

2015-06-04 Thread Werner Pamler
And I forgot to mention that you can unzoom in the standard configuration by just clicking into the chart Am 04.06.2015 um 21:35 schrieb Richard Mace: Hi, Another quick question. How can you, via code, zoom out of a chart, effectively back to what it was by default? If that makes sense?

Re: [Lazarus] TProcess not mirroring terminal

2015-06-04 Thread JuuS
On 06/02/2015 04:08 PM, JuuS wrote: On 06/02/2015 03:42 PM, Marc Santhoff wrote: On Di, 2015-06-02 at 14:21 +0200, JuuS wrote: Anyone have an idea why this is so??? Maybe the difference is that your TProcess is reading only stdout, not stderr. Dunno if there is a switch in TProcess,

[Lazarus] TAChart

2015-06-04 Thread Richard Mace
Hi, Another quick question. How can you, via code, zoom out of a chart, effectively back to what it was by default? If that makes sense? Thanks Richard -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org

Re: [Lazarus] TProcess not mirroring terminal

2015-06-04 Thread JuuS
On 06/04/2015 01:05 PM, JuuS wrote: On 06/02/2015 04:08 PM, JuuS wrote: On 06/02/2015 03:42 PM, Marc Santhoff wrote: On Di, 2015-06-02 at 14:21 +0200, JuuS wrote: Anyone have an idea why this is so??? Maybe the difference is that your TProcess is reading only stdout, not stderr.