Search found 50 matches
- Fri Oct 24, 2008 11:50 am
- Forum: ActiveX
- Topic: Equal/Logical intervals for y-axis of TeeChart graph
- Replies: 1
- Views: 3601
Equal/Logical intervals for y-axis of TeeChart graph
We are using TeeChart ActiveX control in VB 6 to display line graph curves. The problem is that axis intervals/increments are not appearing logical. We want these to be multiples of 1, 5, 10 etc. depending upon the graph values. Please note that graph values are not predictable and can be as low as ...
- Tue Jan 09, 2007 12:22 pm
- Forum: ActiveX
- Topic: Set Teechart Default properties
- Replies: 1
- Views: 3616
Set Teechart Default properties
Hi We set properties of TeeChart at design time then we plot the Chart and modify some properties like change axes grid lines,grid width,axes Ticks style and panel colour etc. We remove all series from the Chart and then again plot the Chart with new series with out loading form(i.e TeeChart). We re...
- Tue Jan 09, 2007 9:58 am
- Forum: ActiveX
- Topic: Axes Scale problem
- Replies: 8
- Views: 9958
- Tue Jan 09, 2007 9:19 am
- Forum: ActiveX
- Topic: Axes Scale problem
- Replies: 8
- Views: 9958
- Tue Jan 09, 2007 8:04 am
- Forum: ActiveX
- Topic: Axes Scale problem
- Replies: 8
- Views: 9958
Hi Custom lablels works fine , But When We change desired increment to axis from TeeChart Editor (i.e Change desired increment from 10 to 15) desired increment is not updated on the TeeChart. TChart1.Axis.Bottom.Labels.Clear ' custom labels for X axis For lLabel = TChart1.Axis.Bottom.Minimum To TCha...
- Tue Dec 26, 2006 7:54 am
- Forum: ActiveX
- Topic: Axis Scaling Problems
- Replies: 2
- Views: 4270
Axis Scaling problem has been solved
Excellent, That works.
Thanks Narcis
Thanks Narcis
- Wed Dec 20, 2006 3:05 pm
- Forum: ActiveX
- Topic: Axis Scaling Problems
- Replies: 2
- Views: 4270
Axis Scaling Problems
Hi I have a problem in axis scaling, when i use the following data Private Sub Form_Load() With TChart1 .AddSeries scLine .Series(0).AddXY 288.904, 0.000104441, "", vbRed .Series(0).AddXY 293.004, 0.000105175, "", vbRed .Series(0).AddXY 297.129, 0.000105942, "", vbRed .Series(0).AddXY 301.251, 0.000...
- Fri Dec 08, 2006 6:30 am
- Forum: ActiveX
- Topic: TeeChart Line/Pint series Style in VB 6.0
- Replies: 2
- Views: 4320
- Tue Dec 05, 2006 6:06 am
- Forum: ActiveX
- Topic: Axes Scale problem
- Replies: 8
- Views: 9958
- Mon Dec 04, 2006 12:51 pm
- Forum: ActiveX
- Topic: Point series "Small Dot "
- Replies: 3
- Views: 5309
Point series "Small Dot "
HI
In Point series when change point style to "Small Dot" and Increase
the width of point .it takes no effect.(i.e size of Small dot doesn't increase).
Thanks
In Point series when change point style to "Small Dot" and Increase
the width of point .it takes no effect.(i.e size of Small dot doesn't increase).
Thanks
- Mon Dec 04, 2006 11:15 am
- Forum: ActiveX
- Topic: Axes Scale problem
- Replies: 8
- Views: 9958
Axes Scale problem
Hi I am sending this line of code ,I set the automatic increment for Axes to false and Evaluate the Axes on the basis of values assigned to Chart. The labels on the Axes or not properly displayed ,The Minimum value for X and Y axis is not properly labled at the Crossing point of X,Y axis. I sending ...
- Tue Nov 28, 2006 2:47 pm
- Forum: ActiveX
- Topic: TeeChart Line/Pint series Style in VB 6.0
- Replies: 2
- Views: 4320
TeeChart Line/Pint series Style in VB 6.0
Hi
In TeeChart editeor Line/point series show the Style in combo box with the text description and Line/Point style.
Is it possible that we show same Look and feel (e.i Left triangle with the symbol ,Solid line with solid line symbol ,etc. )in VB 6.0 Combo box.
Thanks With regards
In TeeChart editeor Line/point series show the Style in combo box with the text description and Line/Point style.
Is it possible that we show same Look and feel (e.i Left triangle with the symbol ,Solid line with solid line symbol ,etc. )in VB 6.0 Combo box.
Thanks With regards
- Fri Nov 24, 2006 12:06 pm
- Forum: ActiveX
- Topic: Disable to Delete series from Keyboard
- Replies: 1
- Views: 3234
Disable to Delete series from Keyboard
Hi
I disable the Delete button using the code
But slecting series and then clicking "Delete" button on the key board, I am able to Delete the series.
How we disable this option.
Thanks & Regards
I disable the Delete button using the code
Code: Select all
TeeEditor1.Options.Delete = False
How we disable this option.
Thanks & Regards
- Fri Nov 24, 2006 11:58 am
- Forum: ActiveX
- Topic: To show Relevent option in TeeCommander And TeeEditor
- Replies: 3
- Views: 4715
- Fri Nov 24, 2006 11:13 am
- Forum: ActiveX
- Topic: How to Check that Tee Chart Title is Empty and How Get Title
- Replies: 2
- Views: 3982
Hi
2- You can get it using TChart1.Header.Caption or TChart1.Header.Text
Header not have "Caption" Property
TChart1.Header.Caption
And This is not a proper Sentex
TChart1.Header.Text
We can get Title in this way
Thanks With Regards
2- You can get it using TChart1.Header.Caption or TChart1.Header.Text
Header not have "Caption" Property
TChart1.Header.Caption
And This is not a proper Sentex
TChart1.Header.Text
We can get Title in this way
Code: Select all
TChart1.Header.Text.Item(0)