Search found 28 matches

by ModelTech
Tue Feb 05, 2008 12:57 pm
Forum: ActiveX
Topic: Add LegendPalette Tool with VBScript
Replies: 5
Views: 8280

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.
by ModelTech
Tue Feb 05, 2008 7:09 am
Forum: ActiveX
Topic: Add LegendPalette Tool with VBScript
Replies: 5
Views: 8280

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...
by ModelTech
Mon Feb 04, 2008 1:54 pm
Forum: ActiveX
Topic: Add LegendPalette Tool with VBScript
Replies: 5
Views: 8280

Add LegendPalette Tool with VBScript

Hi,

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 
But it does not work.
What is my mistake?

Thanks in advance,
Danila.
by ModelTech
Fri Jan 11, 2008 2:15 pm
Forum: ActiveX
Topic: Keeping of aspect ratio while zooming
Replies: 5
Views: 8026

by ModelTech
Fri Jan 11, 2008 12:46 pm
Forum: ActiveX
Topic: Keeping of aspect ratio while zooming
Replies: 5
Views: 8026

Hi Narcís,

thank you for the fast reply. I have tested this example, but it does not work like zoom tool.

I want just "freeze one degree of freedom" of zoom tool (to make proportional X and Y). Is it possible with standart mechanisms of teechart?

Thanks in advance,
Danila.
by ModelTech
Fri Jan 11, 2008 11:32 am
Forum: ActiveX
Topic: Keeping of aspect ratio while zooming
Replies: 5
Views: 8026

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.
by ModelTech
Fri Dec 28, 2007 11:56 am
Forum: ActiveX
Topic: Dynamic palette control with Contour series
Replies: 1
Views: 4024

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...
by ModelTech
Mon Dec 17, 2007 2:22 pm
Forum: ActiveX
Topic: AddArrayGrid: shift between cells borders and grid lines
Replies: 5
Views: 8365

Hi, Narcís!

The version 8 of TeeChart is preferable for me.
Please let me know when this bug will be fixed.

Thanks in advance,
Danila.
by ModelTech
Mon Dec 17, 2007 2:19 pm
Forum: ActiveX
Topic: Basic features of Contour and ColorGrid series
Replies: 11
Views: 15528

Hi, Narcís!

Thank you for the example.

Regards,
Danila.
by ModelTech
Mon Dec 17, 2007 2:04 pm
Forum: ActiveX
Topic: Logarithmic X-axis
Replies: 1
Views: 4189

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 ...
by ModelTech
Wed Dec 05, 2007 9:34 am
Forum: ActiveX
Topic: AddArrayGrid: shift between cells borders and grid lines
Replies: 5
Views: 8365

The question about ColorPalette instead of Legend is closed :)
It is just .Legend.LegendStyle=2 property.

So, the question about GridShift is still actual.
by ModelTech
Wed Dec 05, 2007 8:55 am
Forum: ActiveX
Topic: AddArrayGrid: shift between cells borders and grid lines
Replies: 5
Views: 8365

Additional information:

If I zoom this graph (to see for example four cells) then X axis will be OK. And grid lines will coincide with cells borders.

Thanks in advance,
Danila.
by ModelTech
Wed Dec 05, 2007 8:46 am
Forum: ActiveX
Topic: AddArrayGrid: shift between cells borders and grid lines
Replies: 5
Views: 8365

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...
by ModelTech
Tue Dec 04, 2007 3:20 pm
Forum: ActiveX
Topic: Basic features of Contour and ColorGrid series
Replies: 11
Views: 15528

Why my data doesn't have a grid structure? I use Chart6.Series(0).asColorGrid.IrregularGrid = True
and I define arrays of XVal and ZVal.

BTW: Your last code also does not work.

Thank you for help-file!
by ModelTech
Tue Dec 04, 2007 2:46 pm
Forum: ActiveX
Topic: Basic features of Contour and ColorGrid series
Replies: 11
Views: 15528

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...