Search found 9 matches
- Fri Jul 23, 2010 8:57 pm
- Forum: ActiveX
- Topic: Aligning the Vertical Axes of Two Charts
- Replies: 1
- Views: 4162
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...
- Thu May 14, 2009 2:13 pm
- Forum: ActiveX
- Topic: ZoomRect units
- Replies: 2
- Views: 4716
- Wed May 13, 2009 7:46 pm
- Forum: ActiveX
- Topic: ZoomRect units
- Replies: 2
- Views: 4716
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 ...
- Thu May 07, 2009 3:43 pm
- Forum: ActiveX
- Topic: geographic numeric format
- Replies: 1
- Views: 3894
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....
- Wed Apr 22, 2009 11:12 pm
- Forum: ActiveX
- Topic: TChart::Series(n).GetAsSeries() throws OLE exception
- Replies: 1
- Views: 3971
- Wed Apr 22, 2009 3:55 pm
- Forum: ActiveX
- Topic: TChart::Series(n).GetAsSeries() throws OLE exception
- Replies: 1
- Views: 3971
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 ...
- Tue Apr 14, 2009 6:49 pm
- Forum: ActiveX
- Topic: custom legend bounds before drawing
- Replies: 2
- Views: 4705
- Mon Apr 13, 2009 2:12 pm
- Forum: ActiveX
- Topic: custom legend bounds before drawing
- Replies: 2
- Views: 4705
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...
- Sat Apr 11, 2009 3:14 pm
- Forum: ActiveX
- Topic: Multiple Charts to PDF
- Replies: 3
- Views: 8072
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...