Search found 7 matches

by Mike B
Tue Jun 09, 2009 2:48 am
Forum: .NET
Topic: Minor grid will disappear when I move the chart
Replies: 1
Views: 2645

Minor grid will disappear when I move the chart

Below code is to show the grid and minor grid on the teechart, ifI move the chart, when the grid is near the left axis, the minor grid will disappear, I want to know how to fix this issue. I want to show all the grid all the time. Steema.TeeChart.Styles.Line line = new Styles.Line(Tchart01.Chart); d...
by Mike B
Mon Jun 23, 2008 2:33 pm
Forum: .NET
Topic: WPF deployment problem
Replies: 3
Views: 4763

Deployment

Actually, I did read the tutorial. What I gleaned from the tutorial is that, since I create all my charts in code, I must create a licenses.licx file manually, and add it to the project. Seems simple enough. I tried to do that, and I got the compile time error mentioned in my previous message. Am I ...
by Mike B
Fri Jun 20, 2008 4:27 pm
Forum: .NET
Topic: WPF deployment problem
Replies: 3
Views: 4763

WPF deployment problem

I am trying to deploy a WPF project built using VS2008. The charts are all created in code. I created a licenses.licx file and added it to the project as follows: Steema.TeeChart.TChart, TeeChart Steema.TeeChart.WPF, TeeChart I am getting a compile errors: Error 1 Unable to resolve type 'Steema.TeeC...
by Mike B
Fri May 23, 2008 6:07 pm
Forum: .NET
Topic: Installation (WPF)
Replies: 1
Views: 3174

Installation (WPF)

Hello,

Are there any additional requirements (beyond what is described in the tutorial) for distributing TeeChart for WPF?

I am building the charts via code, and not the designer.

I haven't attempted it, but thought I would check beforehand.

Thanks,

Mike
by Mike B
Tue May 20, 2008 4:00 pm
Forum: .NET
Topic: Setting TEEChart WPF Background
Replies: 1
Views: 2873

Setting TEEChart WPF Background

How do you set the chart background color in TeeChart WPF (I'm currently using the beta). I thought that the following would work, but the entire rectangle is black, as if there was an overlay covering the entire chart area. Steema.TeeChart.WPF.TChart chart = new Steema.TeeChart.WPF.TChart(); chart....
by Mike B
Mon Mar 31, 2008 8:28 pm
Forum: .NET
Topic: Creating a nerw chart and adding it to a Grid control in WPF
Replies: 1
Views: 3294

Creating a nerw chart and adding it to a Grid control in WPF

OK, this is probably obvious. I want to dynamically create a chart and add it to a grid in WPF. I thought it would be this simple: //...Create a row in the grid RowDefinition chartRowDef = new RowDefinition(); chartRowDef.Height = new GridLength(200); MyGrid.RowDefinitions.Add(chartRowDef); //...Cre...
by Mike B
Mon Mar 31, 2008 6:33 pm
Forum: .NET
Topic: Legend Checkboxes not visible in Beta 3 (WPF)
Replies: 1
Views: 3311

Legend Checkboxes not visible in Beta 3 (WPF)

When enabling checkboxes in the legend, I do not see the checkboxes; however they are working. private void Window_Loaded(object sender, RoutedEventArgs e) { tChart1.Aspect.View3D = false; Steema.TeeChart.Styles.Line line1 = new Steema.TeeChart.Styles.Line(tChart1.Chart); Steema.TeeChart.Styles.Erro...