Search found 19 matches

by Kabal
Wed Apr 26, 2006 5:18 am
Forum: ActiveX
Topic: How to draw title of a legend on the right (along a legend)
Replies: 2
Views: 3942

How to draw title of a legend on the right (along a legend)

and rotated on 90 degrees. To look like title of axis.

Best regards, Rustam
by Kabal
Tue Apr 25, 2006 8:09 am
Forum: ActiveX
Topic: Disable TeeCursor.
Replies: 6
Views: 8132

*

I think that this will work slowly and to cause blinking on big surfaces (1024x1024),
by Kabal
Tue Apr 25, 2006 8:09 am
Forum: ActiveX
Topic: Disable TeeCursor.
Replies: 6
Views: 8132

*

I think that this will work slowly and to cause blinking on big surfaces (1024x1024),
by Kabal
Tue Apr 25, 2006 8:04 am
Forum: ActiveX
Topic: How to redraw Legend ?
Replies: 3
Views: 5412

narcis wrote:Hi Rustam,

The legend is automatically updated using this code:

Code: Select all

Private Sub Command1_Click()
    TChart1.Series(0).YValues.Value(5) = TChart1.Series(0).YValues.Value(5) * 2
End Sub
Hi Narchs,

it's don't work. Legend don't updated.

Rustam.
by Kabal
Mon Apr 24, 2006 5:58 am
Forum: ActiveX
Topic: How to redraw Legend ?
Replies: 3
Views: 5412

How to redraw Legend ?

I am changing value: chart.Series(0).ValueLists.Items(1).Value(pos) = value and I want to redraw Legend. Ho it to make ?

Best regards, Rustam.
by Kabal
Fri Apr 21, 2006 9:07 am
Forum: ActiveX
Topic: Disable TeeCursor.
Replies: 6
Views: 8132

Wrong

Hi Rustam, You can implement something like that on TeeChart's OnDblClick event doing something like this: Private Sub TChart1_OnDblClick() TChart1.Tools.Items(0).Active = Not TChart1.Tools.Items(0).Active 'or 'TChart1.Tools.Items(0).asTeeCursor.FollowMouse = Not TChart1.Tools.Items(0).asTeeCursor....
by Kabal
Fri Apr 21, 2006 7:46 am
Forum: ActiveX
Topic: Disable TeeCursor.
Replies: 6
Views: 8132

Disable TeeCursor.

Hello Support Team,

I have one asTeeCursor and property FollowMouse is True. I want to disable this cursor on Double Click. How do it ? Disabled cursor can't move and cursor pointer should not change.

Best regards, Rustam.
by Kabal
Tue Apr 18, 2006 11:26 am
Forum: ActiveX
Topic: Some questions about using Legend.
Replies: 2
Views: 4306

1. This can already be done using something like this: It not that: 1. In this case no smoothing a palette 2. In AddPalette first parameter is Value and I need in position color in range of colors. For example: palette[0]=0xff0000; palette[1]=0xffff00; palette[2]=0x00ff00; palette[3]=0x00ffff; pale...
by Kabal
Tue Apr 18, 2006 10:47 am
Forum: ActiveX
Topic: Some questions about using Legend.
Replies: 2
Views: 4306

Some questions about using Legend.

Hello Support Team, Some questions/improvements offer: 1. I need N-Range palette. Now it is possible to set 3 levels: StartColor, MidColor, EndColor (IColorGridSeries) and me it is necessary 6 levels. How it to make ? 2. I need legend smooth. How it to make ? 3. Improvement: it would be convenient i...
by Kabal
Thu Apr 06, 2006 3:37 am
Forum: ActiveX
Topic: Drag Point Tools ?
Replies: 5
Views: 6497

Hi Kabal, It works fine here, it only fires after a series point has been clicked and the mouse button is released. Are you sure that you didn't implement the code in the OnMouseMove event instead of OnMouseUp? It's not working when You have started drag from "clicked" point in the Series but have ...
by Kabal
Wed Apr 05, 2006 1:44 pm
Forum: ActiveX
Topic: Drag Point Tools ?
Replies: 5
Views: 6497

narcis wrote: An specific event for that doesn't exist but you can easily achieve that by using TeeChart's OnMouseUp event and the series Clicked method as shown here:
Alas! It not quite that. I have event each time when the cursor is crossing the series line.
by Kabal
Wed Apr 05, 2006 11:48 am
Forum: ActiveX
Topic: Drag Point Tools ?
Replies: 5
Views: 6497

Drag Point Tools ?

Hello Support Team,

I added in chart the DragPoint Tools. I want to process event of the end of drag. How to make it ?

Best regards, Rustam.
by Kabal
Fri Mar 31, 2006 3:18 pm
Forum: ActiveX
Topic: Axis labels: valueformat ?
Replies: 4
Views: 5652

It's good. Thanks :)
by Kabal
Fri Mar 31, 2006 3:01 pm
Forum: ActiveX
Topic: Axis labels: valueformat ?
Replies: 4
Views: 5652

Hi Rustam, You can use something like this: TChart1.Axis.Left.Labels.ValueFormat = "#,#######0.00000000" It not that. because it like "0,000123", I would want that the number 1,23e-5 it was displayed as "1,23", without exponent. It would be necessary so as to display value on an axis in various uni...
by Kabal
Fri Mar 31, 2006 11:51 am
Forum: ActiveX
Topic: Axis labels: valueformat ?
Replies: 4
Views: 5652

Axis labels: valueformat ?

Hello Support Team,

My data is changing in range from 1e-7 to 1e-4. I would want that values on an axis were displayed without a sign exponent. For example - "1,123" and not "1,123e-4". How to make it ?

Now it is displaying as "1,123e-4" or "0,000123".

Best regards, Rustam.