Search found 71 matches

by David Novo
Wed Apr 05, 2006 2:23 am
Forum: VCL
Topic: custom axis title position
Replies: 6
Views: 35584

Hello, One idea I stumbled across was to leave the bottomAxis and leftAxis alone, and create custom axes at the zero position of the data. I would only make the title of the left and bottom visible, and would associate the tickmarks and labels with the custom axes. That would give me the effect that...
by David Novo
Tue Apr 04, 2006 11:44 pm
Forum: VCL
Topic: custom axis title position
Replies: 6
Views: 35584

custom axis title position

Hello, I have modified by chartAxis.positionPercent such that the axes are located at the 0,0 data point see below: http://www.denovosoftware.com/download/badaxis.jpg As you can see in the image, the axis titles are still located just below, and to the left of the axes. What I would like to do is pu...
by David Novo
Tue Apr 04, 2006 9:22 pm
Forum: VCL
Topic: Legend Order
Replies: 2
Views: 4621

Is there any answer to this question :-)
by David Novo
Sat Apr 01, 2006 1:58 am
Forum: VCL
Topic: Legend Order
Replies: 2
Views: 4621

Legend Order

Hello,

It seems that the legend items get drawn in the order of the seriesList. Is there a way to change the order in the legend. For instance, if I want to list the legend items alphabetically or something?

i.e.

series.showInLegend:=true;
series.LegendPos:=7;

something along those lines?
by David Novo
Sat Mar 18, 2006 6:28 am
Forum: VCL
Topic: Dotted Lines do not print: someone knows how to solve this?
Replies: 3
Views: 5940

Extended pens are defined as part of the windows api. They allow you to have, for instance, dashed pens greater than 1 pixel wide.

However, the changes we had to compensate for were introduced around tchart 5 or so
by David Novo
Fri Mar 17, 2006 7:10 am
Forum: VCL
Topic: Dotted Lines do not print: someone knows how to solve this?
Replies: 3
Views: 5940

Hi,

One of the things that we had trouble with is that tchart sometimes uses extended pens. Sometimes these are not supported by all devices. Do you know if your printers support these?
by David Novo
Tue Jan 17, 2006 6:40 am
Forum: VCL
Topic: Legend size seems incorrect
Replies: 3
Views: 5200

I think we are using TChart 7.03 but I will have to check.

The code that we use for this is very involved. I can try to save the chart to a .tee file at the appropriate place. Would that help you?
by David Novo
Tue Jan 17, 2006 6:37 am
Forum: VCL
Topic: square axes
Replies: 4
Views: 7295

Hi, Good eye spotting the FACS data. The tchart code that actually calculates the size of the different parts of the plot (legend, titles etc) is so completely entangled with the code that draws the different parts that I despair of ever trying to do anything fancy in this regard. I thought I had it...
by David Novo
Tue Jan 17, 2006 5:05 am
Forum: VCL
Topic: Export to PDF
Replies: 3
Views: 5508

What tool are you using to create the PDF?
by David Novo
Fri Jan 13, 2006 8:12 pm
Forum: VCL
Topic: square axes
Replies: 4
Views: 7295

Hello, The isometric axis does not do exactly what I want. The isometric axis shrinks the area of the plot where the data is displayed. But it keeps large blank areas of the axes. I need to shrink the axes so that the axes are the same length, like the image shown below: http://www.denovosoftware.co...
by David Novo
Mon Jan 09, 2006 2:01 am
Forum: VCL
Topic: square axes
Replies: 4
Views: 7295

square axes

Hello, I am trying to force the tchart to always have an equal length X and Y axis, irrespective of the size of the TChart.BoundsRect. I have tried the following change to Procedure TCustomAxisPanel.InternalDraw. (look for "// dn changes") Begin Old:=AutoRepaint; AutoRepaint:=False; CalcInvertedRota...
by David Novo
Mon Jan 09, 2006 1:02 am
Forum: VCL
Topic: label overwrites titles
Replies: 1
Views: 3531

label overwrites titles

Hello, I have found that if you make the chart label too big, the label can overwrite the title. http://www.denovosoftware.com/download/labeloverwritestitle.jpg I have fixed the problem in chart.pas so that it works in my application. But it only takes into account the left axis, which is the only o...
by David Novo
Sat Jan 07, 2006 6:46 am
Forum: VCL
Topic: Histogram
Replies: 2
Views: 5395

As you mentioned, to create a histogram you have to define a bin width from your raw data.

Its quite straightforward to process the data yourself into bins, and then create a new binned series in TCHART.
by David Novo
Fri Jan 06, 2006 11:01 pm
Forum: VCL
Topic: Legend size seems incorrect
Replies: 3
Views: 5200

Legend size seems incorrect

Hello, I have been experimenting with implementing different zooms. This is the case at 100% zoom http://www.denovosoftware.com/download/100.jpg I am changing the tchart to 35% zoom by changing the View3DOptions.fontZoom. I also change plot size to 35%. It seems to basically work okay (see below) ht...
by David Novo
Tue Dec 27, 2005 8:46 pm
Forum: VCL
Topic: is there a way to calculate this?
Replies: 9
Views: 12527

Hi Narcis, I am trying to figure this out on my own, but I am confused how to apply what you said. All of those variables (IStartPos, iEndPos) change only after the chart has been drawn. I do not want to have to change the chart to figure out what the chartRect is, that defeats the purpose. I want t...