Wpf chart zooming
Wpf chart zooming
How to zoom the chart with mouse right click in wpf?
Re: Wpf chart zooming
Hello asupriya,
Is not possible in this moment. There is a known bug for us with number [TW16015460]. We will try to fix it to upcoming versions of TeeChartWPF.
Thanks,
Is not possible in this moment. There is a known bug for us with number [TW16015460]. We will try to fix it to upcoming versions of TeeChartWPF.
Thanks,
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: Wpf chart zooming
Amazing ... how can such a fundamental part of this library be having such a serious bug?
Anyways, if we need to implement it for WPF chart, how can we do it programatically? Please provide some sample code.
Thanks
Anyways, if we need to implement it for WPF chart, how can we do it programatically? Please provide some sample code.
Thanks
Re: Wpf chart zooming
Hello asupriya,
Thanks,
I have increased the severity of bug number [TW16015460] because we will try to fix it to upcoming version of TeeChartWPF.Amazing ... how can such a fundamental part of this library be having such a serious bug?
If you want use zoom with right button, you need do the same as you do in Winforms as do in next lines of code:Anyways, if we need to implement it for WPF chart, how can we do it programatically? Please provide some sample code.
Code: Select all
private void InitializeChart()
{
Steema.TeeChart.WPF.Styles.Bar bar1 = new Steema.TeeChart.WPF.Styles.Bar(tChart1.Chart);
bar1.FillSampleValues();
tChart1.Zoom.MouseButton = MouseButton.Right;
}
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 |