Search found 9 matches

by MGV
Fri Feb 27, 2009 1:11 pm
Forum: .NET
Topic: WPF Zoom problem 3.5.3330.21113
Replies: 1
Views: 3085

WPF Zoom problem 3.5.3330.21113

Hello when we try zoom rigth from red point - we crash private void button4_Click(object sender, RoutedEventArgs e) { Line Ser = new Line(); Ser.Pointer.Visible = true; Ser.Pointer.Style = PointerStyles.Circle; Ser.Pointer.VertSize = 2; Ser.Pointer.HorizSize = 2; tChart1.Series.Add(Ser); Ser.FillSam...
by MGV
Tue Feb 24, 2009 2:54 pm
Forum: .NET
Topic: WPF performance test
Replies: 5
Views: 6931

this works for winforms version , but does not for WPF

narcis wrote:Hi MGV,

Try calling tChart1.Draw() before retrieving the values.
by MGV
Tue Feb 24, 2009 2:17 pm
Forum: .NET
Topic: WPF performance test
Replies: 5
Views: 6931

thank you one more question : private void tChart1_Zoomed(object sender, EventArgs e) { int f = tChart1.Chart.Series[0].FirstVisibleIndex; // --always returned 0 int l = tChart1.Chart.Series[0].LastVisibleIndex; // --always returned Series[0].Count-1 textBox1.Text = textBox1.Text + "\n" + f.ToString...
by MGV
Fri Feb 20, 2009 2:09 pm
Forum: .NET
Topic: WPF performance test
Replies: 5
Views: 6931

WPF performance test

Hello we have very small speed of zoom and move operations with WPF Chart:( version :3.5.3274.30663 can you increase performance ? private void button2_Click(object sender, RoutedEventArgs e) { tChart1.Aspect.View3D = false; int SerCnt = 20; int PtCnt = 48 * 30; for (int i = 1; i <= SerCnt; i++) { L...
by MGV
Wed Nov 19, 2008 11:33 am
Forum: .NET
Topic: WPF Bug
Replies: 1
Views: 3034

WPF Bug

Hello last point ( before ) space is not shown .( on winforms version works ok) Line Ser = new Line(); tChart1.Series.Add(Ser); tChart1.Aspect.View3D = false; Ser.Pointer.Visible = true; Ser.TreatNulls = TreatNullsStyle.DoNotPaint; Ser.Pointer.Style = PointerStyles.Circle; Ser.Pointer.VertSize = 6; ...
by MGV
Mon Nov 17, 2008 12:50 pm
Forum: .NET
Topic: WPF Client Profile
Replies: 1
Views: 3048

WPF Client Profile

Hello
is it possible to build TeeChart for .net 3.5 sp1 client profile subset ?
(without reference to System.Web)

thank you
by MGV
Fri Oct 17, 2008 7:52 am
Forum: .NET
Topic: WPF Chart DateTime Format problem
Replies: 1
Views: 3210

WPF Chart DateTime Format problem

Hello in this example datetime is not shown correctly( we do not see 24 hour format ) tChart1.Axes.Bottom.Labels.DateTimeFormat = "dd/MM/yy hh:mm"; tChart1.Axes.Bottom.Labels.Angle = 90; line1.XValues.DateTime = true; DateTime dt = DateTime.Today; for (int i = 0; i < 48; i++) { line1.Add(dt, i); dt ...
by MGV
Tue Sep 23, 2008 6:27 am
Forum: .NET
Topic: RELEASE 3.5.3187.15583 WPF Question
Replies: 3
Views: 6380

RELEASE 3.5.3187.15583 WPF Question

Hello in new release Bugfixes/changes i see 13) [TF02013358] Problems with serialization in TeeChart.WPF.dll. Fixed. but in wpf demo project we still got exception: "Type 'Steema.TeeChart.WPF.Chart' in Assembly 'TeeChart.WPF, Version=3.5.3187.15585, Culture=neutral, PublicKeyToken=98e8c3f289a4e286' ...
by MGV
Wed Oct 03, 2007 7:31 am
Forum: .NET
Topic: Problems with BackgroundImage on Tchart.Pocket
Replies: 1
Views: 3345

Problems with BackgroundImage on Tchart.Pocket

Good day! I want to set BackgroundImage. I do as TChart1.Panel.Image = pictureBox1.Image; TChart1.Panel.Gradient.Visible = false; It works at Framework 2.0, but does't at PocketPC. Application throw null reference exception. I solve the problem at Graphics3DGdiPlus class, method Draw(Rectangle r, Im...