Hi,
Contour series is used.
Tools were added with the «Editing» with no errors.
Error occurs while adding this Tools in VBScript.
Thanks in advance,
Danila.
Search found 28 matches
- Tue Feb 05, 2008 12:57 pm
- Forum: ActiveX
- Topic: Add LegendPalette Tool with VBScript
- Replies: 5
- Views: 8341
- Tue Feb 05, 2008 7:09 am
- Forum: ActiveX
- Topic: Add LegendPalette Tool with VBScript
- Replies: 5
- Views: 8341
Hi, I add this tools: .Tools.Add(37) .Tools.Items(0).Active = True there is an empty legend without values after .Tools.Items(0).asLegendPalette.Series = .Series(0) At attempt display of page, alert window: Internet Explorer has encountered a problem witch an add-on and needs to close TeeChart Pro v...
- Mon Feb 04, 2008 1:54 pm
- Forum: ActiveX
- Topic: Add LegendPalette Tool with VBScript
- Replies: 5
- Views: 8341
Add LegendPalette Tool with VBScript
Hi,
I want to add to my web chart LegendPalette Tool.
I try to use following code
But it does not work.
What is my mistake?
Thanks in advance,
Danila.
I want to add to my web chart LegendPalette Tool.
I try to use following code
Code: Select all
With Chart8
.Tools.Add(37)
.Tools.Items(0).Active = True
.Tools.Items(0).asLegendPalette.Series = .Series(0)
End With
What is my mistake?
Thanks in advance,
Danila.
- Fri Jan 11, 2008 2:15 pm
- Forum: ActiveX
- Topic: Keeping of aspect ratio while zooming
- Replies: 5
- Views: 8088
I mean the issue described here:
http://www.teechart.net/support/viewtop ... pect+ratio
http://www.teechart.net/support/viewtop ... pect+ratio
- Fri Jan 11, 2008 12:46 pm
- Forum: ActiveX
- Topic: Keeping of aspect ratio while zooming
- Replies: 5
- Views: 8088
- Fri Jan 11, 2008 11:32 am
- Forum: ActiveX
- Topic: Keeping of aspect ratio while zooming
- Replies: 5
- Views: 8088
Keeping of aspect ratio while zooming
Hi,
I want to keep aspect ratio while zooming. How can I do this using VBScript?
Thanks in advance,
Danila.
I want to keep aspect ratio while zooming. How can I do this using VBScript?
Thanks in advance,
Danila.
- Fri Dec 28, 2007 11:56 am
- Forum: ActiveX
- Topic: Dynamic palette control with Contour series
- Replies: 1
- Views: 4049
Dynamic palette control with Contour series
Hi! I try to do following with Contour series using VBScript: 1. I load Contour map using .asContour.AddArrayGrid method. 2. I want to change number of intervals in color Palette (asContour.NumLevels). 3. If I increase this value then everything OK. 4. If I try to decrease this value then TeeChart s...
- Mon Dec 17, 2007 2:22 pm
- Forum: ActiveX
- Topic: AddArrayGrid: shift between cells borders and grid lines
- Replies: 5
- Views: 8430
- Mon Dec 17, 2007 2:19 pm
- Forum: ActiveX
- Topic: Basic features of Contour and ColorGrid series
- Replies: 11
- Views: 15615
- Mon Dec 17, 2007 2:04 pm
- Forum: ActiveX
- Topic: Logarithmic X-axis
- Replies: 1
- Views: 4223
Logarithmic X-axis
Hi, I'm using TeeChart v.8 with VBScript. I try to logarothmic set X-axis as follows: Chart1.Axis.Bottom.Logarithmic = True Chart1.Axis.Bottom.LogarithmicBase=10 It works well, but axis labels are not in powers of 10. So, it looks like: 0.14 0.16 0.18 ... And I want to get something like: 10^0 10^1 ...
- Wed Dec 05, 2007 9:34 am
- Forum: ActiveX
- Topic: AddArrayGrid: shift between cells borders and grid lines
- Replies: 5
- Views: 8430
- Wed Dec 05, 2007 8:55 am
- Forum: ActiveX
- Topic: AddArrayGrid: shift between cells borders and grid lines
- Replies: 5
- Views: 8430
- Wed Dec 05, 2007 8:46 am
- Forum: ActiveX
- Topic: AddArrayGrid: shift between cells borders and grid lines
- Replies: 5
- Views: 8430
AddArrayGrid: shift between cells borders and grid lines
Hi, Thank you Narcís for helping to understand 3Dseries usage. Now I'm using AddArrayGrid. But there is a little issue about this: I have array of 6*4 values, but X axis range is 1..5 (and also grid lines figured for 5 (five) cells). But there are 6 (six) cells along X axis. SUB FillChart Chart7.Env...
- Tue Dec 04, 2007 3:20 pm
- Forum: ActiveX
- Topic: Basic features of Contour and ColorGrid series
- Replies: 11
- Views: 15615
- Tue Dec 04, 2007 2:46 pm
- Forum: ActiveX
- Topic: Basic features of Contour and ColorGrid series
- Replies: 11
- Views: 15615
Narcís, thank you for the patience :) I try to populate ColorGrid like in thread you have pointed. The code is listed below. Unfortunately, it does not work :( SUB FillChart Chart6.Environment.IEPrintWithPage=True Chart6.RemoveAllSeries Chart6.Legend.CheckBoxes = True Chart6.Zoom.Pen.Color = vbBlack...