Search found 9 matches

by jbell
Fri Jul 23, 2010 8:57 pm
Forum: ActiveX
Topic: Aligning the Vertical Axes of Two Charts
Replies: 1
Views: 4122

Aligning the Vertical Axes of Two Charts

Hello, I've used TeeChart AX v8 to create a window that can be configured to contain up to 18 plots in a grid. My users would like to see all of the plots in a column drawn with aligned vertical axes. That is, for the far left and rights sides of the plots to be drawn at the same screen-wise X coord...
by jbell
Thu May 14, 2009 2:13 pm
Forum: ActiveX
Topic: ZoomRect units
Replies: 2
Views: 4672

That worked, thanks.
by jbell
Wed May 13, 2009 7:46 pm
Forum: ActiveX
Topic: ZoomRect units
Replies: 2
Views: 4672

ZoomRect units

Using TChart 8.0 in MSVC 2008. The documentation I have gives an example of using ZoomRect as follows //zoom in TChart1.Zoom.ZoomRect 5, 5, TChart1.Width - 5, TChart1.Height - 5 // zoom out TChart1.Zoom.ZoomRect - 5, - 5, TChart1.Width + 5, TChart1.Height + 5 which leads me to believe the following ...
by jbell
Thu May 07, 2009 3:43 pm
Forum: ActiveX
Topic: geographic numeric format
Replies: 1
Views: 3868

geographic numeric format

I'm having trouble getting the geographic numeric format to function for axis labels. I tried the following: Add a chart to a dialog and open the editor. Add a series and set some random data. Select Axis.Left Axis.Format and open the numeric Format dialog. Select something from the geographic list....
by jbell
Wed Apr 22, 2009 11:12 pm
Forum: ActiveX
Topic: TChart::Series(n).GetAsSeries() throws OLE exception
Replies: 1
Views: 3925

Uh, never mind :)
by jbell
Wed Apr 22, 2009 3:55 pm
Forum: ActiveX
Topic: TChart::Series(n).GetAsSeries() throws OLE exception
Replies: 1
Views: 3925

TChart::Series(n).GetAsSeries() throws OLE exception

I'm using V8.0.0.5 in MSVC 2008. I have a line chart, and want to set the symbol type for a series. I do something like the following: pChart->AddSeries(scLine); CShapeSeries ss = pChart->Series(0).GetAsShape(); ss.SetStyle(0); // rectangle The call to GetAsShape() throws an OLE exception. Is there ...
by jbell
Tue Apr 14, 2009 6:49 pm
Forum: ActiveX
Topic: custom legend bounds before drawing
Replies: 2
Views: 4645

InternalRepaint is what I was missing, thanks.

JBell
by jbell
Mon Apr 13, 2009 2:12 pm
Forum: ActiveX
Topic: custom legend bounds before drawing
Replies: 2
Views: 4645

custom legend bounds before drawing

I'm using V8.0.0.5 in MSVC 2008, trying to position the legend using the custom position settings. I would like to align the right side of the legend with something, say, the right side of the chart. I need the width of the legend when I draw it in its new location, but ShapeBounds returns the previ...
by jbell
Sat Apr 11, 2009 3:14 pm
Forum: ActiveX
Topic: Multiple Charts to PDF
Replies: 3
Views: 7959

I asked this question on the news group last week before buying a license. Here's the reply I received... This can be done manually. We don't have a TeeChart ActiveX example of that. Below you'l find a TeeChart VCL example. Same should be possible using the ActiveX version. procedure TFourChartsForm...