Search found 7 matches
- Fri Apr 22, 2005 1:16 pm
- Forum: .NET
- Topic: Problem with "Steema.TeeChart.FrAccessProvider.GetLicen
- Replies: 1
- Views: 4569
Problem with "Steema.TeeChart.FrAccessProvider.GetLicen
After doing some changes and upgrading versions I can run in my machine but when installing in a different one (using Install Shield 5.0 as I have been doing with no problem) my application launches (built in VB.NET 2003) but when opening the dialog where Teechart is I get the following error. How c...
- Sat Jul 10, 2004 8:53 am
- Forum: .NET
- Topic: How do I individually set properties for points in a series?
- Replies: 3
- Views: 7659
How do I individually set properties for points in a series?
How can I set different pointer styles or LinePen for different indexes in a line series in VB.NET?
For instance I would like to have even segments red and odd ones green in an alternate way. Same with circle and square pointers.
Help please!!
For instance I would like to have even segments red and odd ones green in an alternate way. Same with circle and square pointers.
Help please!!
- Wed Jun 30, 2004 12:13 pm
- Forum: .NET
- Topic: Problems with series in a for/next structure
- Replies: 9
- Views: 15871
- Wed Jun 30, 2004 10:37 am
- Forum: .NET
- Topic: Problems with series in a for/next structure
- Replies: 9
- Views: 15871
Well, from the next code For position = 0 To 10 Tchart1.Series.Add(New Steema.TeeChart.Styles.Points3D) Tchart1.Series(position).Title = "Series3D" & CStr(position) Tchart1.Series(position).ColorEach = True (Tchart1.Series(position) as Steema.TeeChart.Styles.Points3D ).pointer.visible=true Next posi...
- Tue Jun 29, 2004 6:28 pm
- Forum: .NET
- Topic: Problems with series in a for/next structure
- Replies: 9
- Views: 15871
Sure Pep TChart1.Series(position).ColorEach = True works too and so I do in some cases but some other properties do not seem to be accesible that way so: seriestitle.LinePen.Color = Color.Black seriestitle.Pointer.Visible = false where seriestitle is the name of the series works BUT: Tchart1.series(...
- Mon Jun 28, 2004 2:06 pm
- Forum: .NET
- Topic: Problems with series in a for/next structure
- Replies: 9
- Views: 15871
Thanks Chris, that solves one of the problems since I can deal with the series collection with a variable number of elements. My next (maybe trivial but not for me) problem is asigning different properties to the series depending on the index of that element in the collection. Series3D1.LinePen.Colo...
- Mon Jun 21, 2004 1:18 pm
- Forum: .NET
- Topic: Problems with series in a for/next structure
- Replies: 9
- Views: 15871
Problems with series in a for/next structure
A couple of probably stupid questions with obvious answers but... sorry guys, not for me. Can anybody help me? I need to create and delete series in run time with a number of them dynamically changing with the results of some calculations in VB.NET but I am having problems. My idea was using a for/n...