Search found 5 matches

by Pascal
Tue Nov 30, 2004 6:15 pm
Forum: ActiveX
Topic: I don't want some series in a legend
Replies: 1
Views: 3529

I don't want some series in a legend

Hello,

I wonder if it is possible to avoid a serie to be included in a legend. I mean, assuming there are Series 1, 2, 3 and 4: I want only series 2 and 3 to appear in the legend. Is there a way ?

Thank you a lot.

Pascal
by Pascal
Fri Nov 12, 2004 2:01 pm
Forum: ActiveX
Topic: Canvas BackGround color when zoomed
Replies: 1
Views: 3771

Hello,

I assume I get the answer:

CBrush1 cBrush = cCanvas.GetBrush();
cBrush.SetColor(COL_WHITE);
cBrush.SetStyle( bsSolid);


CPen1 cPen = cCanvas.GetPen();
cPen.SetColor( COL_BLACK);

cCanvas.SetBackColor( COL_WHITE);
cCanvas.SetBackMode( cbmOpaque);
...
by Pascal
Fri Nov 12, 2004 1:38 pm
Forum: ActiveX
Topic: Canvas BackGround color when zoomed
Replies: 1
Views: 3771

Canvas BackGround color when zoomed

Hello, I can't display the canvas background color when the object is zoomed. In that case, the rectangle background isn't opaque as it is when no zoom is applying. Here is the code to display the canvas text into a rectangle: // -------------- // Maximum width int nWidthMax = 0; for (int k = 0; k <...
by Pascal
Thu Nov 04, 2004 1:04 pm
Forum: ActiveX
Topic: Tooltip freezes the application
Replies: 3
Views: 5383

Hello Josep,

The application is quiet large. Is there another way than email to transfert it ?
by Pascal
Wed Nov 03, 2004 6:04 pm
Forum: ActiveX
Topic: Tooltip freezes the application
Replies: 3
Views: 5383

Tooltip freezes the application

Hello,

I am using the OnMarkTipToolGetText event to display a tooltip. I am using TeeChart v6. When I have multiples series displayed the TeeObject, it is quite frequent the tooltip freezes the application when I move the mouse out of the Teechart object.

Is it a known problem ?