Hello,
I recently upgraded to V8.0.0.3.10507, and noticed that the OnEnter/OnExit events are still not triggered when the mouse enters and leaves the chart. My development platform is Microsoft Visual C++.
Are they going to be fixed in the near future?
Search found 19 matches
- Mon Feb 11, 2008 5:40 pm
- Forum: ActiveX
- Topic: How can I make the OnEnter & OnExit events work?
- Replies: 3
- Views: 6521
- Thu Jan 17, 2008 5:37 pm
- Forum: ActiveX
- Topic: Print Preview Results
- Replies: 3
- Views: 7931
- Tue Jan 15, 2008 10:11 pm
- Forum: ActiveX
- Topic: Print Preview Results
- Replies: 3
- Views: 7931
Hello, Here is some more specific information for this post I want to print multiple pages of the same graph, where the tchart is modified for each printed page. Ideally, I'd like to display the ShowPreview page to allow the user to set up the printer, etc. Then, I'd like to know what the user enter...
- Wed Jan 09, 2008 6:12 pm
- Forum: ActiveX
- Topic: Print Preview Results
- Replies: 3
- Views: 7931
Print Preview Results
Hello,
After returning from the TeeChart Print Preview Page, I'd like to know how the window was closed. I'd like to know if the user pressed the "Print" or "Close" button. Is there a way to determine this?
Thank you,
Jennifer Britt
After returning from the TeeChart Print Preview Page, I'd like to know how the window was closed. I'd like to know if the user pressed the "Print" or "Close" button. Is there a way to determine this?
Thank you,
Jennifer Britt
- Wed Nov 15, 2006 1:52 am
- Forum: ActiveX
- Topic: DEL Key and List BOX
- Replies: 10
- Views: 14944
Hello Josep, Thank you for your reply. The problem I experienced, though, was that my header files were not updated when I updated my TeeChart7.ocx file. I thought that the header files in my Program Files\Steema Software directory would have been updated at the same time, but they were not. I got a...
- Tue Nov 07, 2006 6:32 pm
- Forum: ActiveX
- Topic: Series.Active property also hides text in legend
- Replies: 4
- Views: 7904
- Tue Nov 07, 2006 6:31 pm
- Forum: Wishes and ideas
- Topic: OnRemoveSeries Events
- Replies: 3
- Views: 14163
- Tue Nov 07, 2006 6:30 pm
- Forum: ActiveX
- Topic: DEL Key and List BOX
- Replies: 10
- Views: 14944
Hello Josep, I am using VC++ , TeeChart Pro V7.0.1.2. and I don't see how to modify the AskDelete, AllowDeleteSeries , and AllowAddSeries in the teelistbox.h file. Is there something else I need to do when I update my TeeChart files to get the appropriate header files? I think I've done everything I...
- Fri Nov 03, 2006 1:15 am
- Forum: ActiveX
- Topic: DEL Key and List BOX
- Replies: 10
- Views: 14944
- Thu Nov 02, 2006 11:07 pm
- Forum: Wishes and ideas
- Topic: OnRemoveSeries Events
- Replies: 3
- Views: 14163
OnRemoveSeries Events
Hello, There are events for OnSeriesBeforeAdd and OnSeriesAfterAdd. Could we do the same for when the user removes a series. :) For example, if the user deletes a series via the TeeListBox, there's more cleanup that needs to be done in my code. It would be nice if we received an event for when this ...
- Wed Nov 01, 2006 6:27 pm
- Forum: ActiveX
- Topic: Series.Active property also hides text in legend
- Replies: 4
- Views: 7904
Thank you for you help, as always, Narcis. Shucks. I was hoping that the Active attribute would do what I wanted it to do. Setting the color to clNone doesn't work for me; I believe it's because clNone doesn't consider the background color. Either way, I can still see the line; it's just a dark line...
- Fri Oct 27, 2006 6:03 pm
- Forum: ActiveX
- Topic: Series.Active property also hides text in legend
- Replies: 4
- Views: 7904
Series.Active property also hides text in legend
Hello, I want to allow the user to view data numerically in the legend, but not necessarily in the graph. When I set the following attributes. series.SetActive(false); series.SetShowInLegend(true); I don't get the desired effect. The line disappears in the graph, but it is also removed from the lege...
- Thu Oct 26, 2006 11:43 pm
- Forum: ActiveX
- Topic: Color Picker at Run Time
- Replies: 1
- Views: 4483
Color Picker at Run Time
Hello, I would like to allow the user to change the color of a series at run-time, but none of the other pen qualities. Is there a way I can pop up only a color-picker, without bringing up the whole pen editor? I am using TeeChart ActiveX v7.0.1.2 for VC++. All of the series in my chart are fast lin...
- Fri Oct 20, 2006 9:27 pm
- Forum: ActiveX
- Topic: Color Editor at RunTime
- Replies: 1
- Views: 4294
Color Editor at RunTime
Hello, The CPen1::ShowEditor() doesn't seem to be working for me. I've tried both of the following scenarios: CSeries series = pChartData->Series(iCurrentSel); CLineSeries lineSeries = series.GetAsLine(); CPen1 pen = lineSeries.GetLinePen(); pen.ShowEditor(); ... CSeries series = pChartData->Series(...
- Tue Oct 03, 2006 8:56 pm
- Forum: ActiveX
- Topic: Legend Size
- Replies: 3
- Views: 6730
Hello Josep, Thank you for investigating this. Here is a short code sample, so that you might be able to reproduce this problem. void CGraphWindow::OnBnClicked_ChangeLegendFont(unsigned int id) { CLegend legend = chartData.get_Legend(); CTeeFont font = legend.GetFont(); if (GetCheckedRadioButton(......