Search found 7 matches

by Gary
Mon Jun 21, 2010 6:42 pm
Forum: VCL
Topic: TeeChart 6: Grid Lines and other non-black lines don't print
Replies: 2
Views: 5530

TeeChart 6: Grid Lines and other non-black lines don't print

A client is experiencing issues when printing TeeCharts (line graphs) in our application, where non-black lines (i.e. grid lines using gray color) are not printed (or printed as white). This issue only happens when printing using an HP Printer, and is not known to occur with non-HP printers. I've fo...
by Gary
Wed Aug 01, 2007 4:23 pm
Forum: ActiveX
Topic: Issue with Marks for a Data Point Series
Replies: 1
Views: 4360

Issue with Marks for a Data Point Series

I have a multi-part issue with Marks. I'm using the following code to add data points to a series for plotting: std::map<double, DataPoint>::iterator iter; for(iter = m_mapFundalHeightData.begin(); iter != m_mapFundalHeightData.end(); iter++) { DataPoint dataPoint = iter->second; seriesActivityData....
by Gary
Fri Jun 23, 2006 3:36 pm
Forum: ActiveX
Topic: Custom series pointers?
Replies: 3
Views: 6123

Thanks Narcís. I'm not really sure how to implement this using Visual C++ instead of VB, though. I understand what's going on with the code, I just can't find enough information in the documentation or on the forums to get it up and running. I found this post and it looks to be similar to what I'm w...
by Gary
Thu Jun 22, 2006 9:48 pm
Forum: ActiveX
Topic: Custom series pointers?
Replies: 3
Views: 6123

Custom series pointers?

I was wondering how I would go about applying a series with a custom image as a pointer that will display on both the graph and the legend.

I'm also currently running version 6 if that makes any difference.
by Gary
Tue Jun 08, 2004 3:03 pm
Forum: ActiveX
Topic: Need help, Drawing Grid Lines
Replies: 3
Views: 8040

Bumping an old post because I'm still having problems with this. I'm using 6.0.0.3. I need to stay with this version for now due to client issues. I'm using the following code to draw my lines: Private Sub tcGraph_OnAfterDraw() Dim oDrawLineTool As TeeChart.IDrawLineTool Set oDrawLineTool = tcGraph....
by Gary
Wed May 12, 2004 9:10 pm
Forum: ActiveX
Topic: Need help, Drawing Grid Lines
Replies: 3
Views: 8040

Need help, Drawing Grid Lines

I'm ripping my hair out over here so hopefully you guys can help. I need to do the following: I need to display a graph, with one axes being dates, and the other standard deviations. The SD axis can be set to a max of +/- 2, 3, or 4 standard deviations. The 0, +2, and -2 grid lines need to be solid ...
by Gary
Mon Feb 23, 2004 3:11 pm
Forum: ActiveX
Topic: TeeChart V6 Horizontal Zoom in Visual Basic
Replies: 1
Views: 6365

TeeChart V6 Horizontal Zoom in Visual Basic

Hello, I am trying to find a way to zoom in horizontally only without using the mouse. I am placing two command buttons on the form, one for zoom and another for zoom out. The ZoomPercent function appears to only zoom in/out the entire graph and the zoomRect function is acting very strangely. Anyone...