Search found 5 matches

by Bjørn
Wed Sep 07, 2005 8:37 pm
Forum: ActiveX
Topic: Problem with long text in legend
Replies: 1
Views: 2969

Problem with long text in legend

I've got at problem that I am unsure how to solve. On a graph - I have got very long legend description see http://www.bitmaker.no/info/steema.htm for an example a) is there a way to break the line of the legend description? I've tried vit insering crlf but this does not help. (vb6). b) is it possib...
by Bjørn
Tue Sep 06, 2005 12:55 pm
Forum: ActiveX
Topic: multiple pies - legend problem
Replies: 6
Views: 6686

Hola, narcis! How? My app is a COM+ .dll which runs as a component in component services. I use Teechart like this: Dim TChart As Object ' create the ole automated object... Set TChart = CreateObject("TeeChart.TChart") TChart.Visible = False ' ' and do the other bits that makes the graph and creates...
by Bjørn
Mon Sep 05, 2005 11:20 am
Forum: ActiveX
Topic: multiple pies - legend problem
Replies: 6
Views: 6686

on after draw?

Is it possible to use the onAfter draw when the project is a .DLL project (with no visible interface?)... (I just generate a JPEG in my application).
The Teechart is late bound... :?:
by Bjørn
Sat Sep 03, 2005 2:59 pm
Forum: ActiveX
Topic: multiple pies - legend problem
Replies: 6
Views: 6686

More info on the subject

I've attempted the following: Y = 1 While y < NumberOfseries TChart.Canvas.Brush.Color = RGB(255, 255, 255) TChart.Canvas.Rectangle 90, 90, 200, 120 TChart.Canvas.Font.Bold = True TChart.Canvas.TextOut TChart.Series(y - 1).asPie.XCenter, TChart.Series(y - 1).asPie.yCenter, "SERIES LEGEND IS.." y = y...
by Bjørn
Sat Sep 03, 2005 2:12 pm
Forum: ActiveX
Topic: multiple pies - legend problem
Replies: 6
Views: 6686

multiple pies - legend problem

I've got multiples pies (in other word series) on a chart (more than 1 series). When this is the case the legend is of "no value" since there is no way to tell which series are which pie? Is there a way to mark each PIE with series legend?