Search found 39 matches
- Mon Jun 16, 2008 11:29 am
- Forum: ActiveX
- Topic: Is Teechart activeX 6 Vista compatible?
- Replies: 1
- Views: 4303
- Sat Oct 14, 2006 3:30 pm
- Forum: ActiveX
- Topic: landscape/portrait printing
- Replies: 2
- Views: 5072
- Thu Oct 12, 2006 10:53 am
- Forum: ActiveX
- Topic: landscape/portrait printing
- Replies: 2
- Views: 5072
landscape/portrait printing
Hi, I am using ActiveX 6/VC++ 6 and CHartPreviewPanel for printing. I have found that it has method to set the orientation of printout. Basically here's my code : CButton *pLandscapeOrient = (CButton*) GetDlgItem(IDC_PRINT_LANDSCAPE_RADIO); if (pLandscapeOrient->GetCheck()) { m_ctlChartPreviewPanel....
- Tue Oct 11, 2005 5:47 pm
- Forum: ActiveX
- Topic: Editor->Series->Datasource->Function question
- Replies: 10
- Views: 14392
hi Guys, I think I have found out what a problem could be. The thing is that I am filling series via Add functions and not via <b> DataSource </b> property. I think that is the reason the series are not displayed in the "Available" listbox. So here is the question: can I somehow assign those values ...
- Tue Sep 20, 2005 8:27 pm
- Forum: ActiveX
- Topic: Editor->Series->Datasource->Function question
- Replies: 10
- Views: 14392
Hi Narcis,
You are right, of course I meant www.steema.net . Ok, subscribed now to both news. Thanks.
You are right, of course I meant www.steema.net . Ok, subscribed now to both news. Thanks.
- Tue Sep 20, 2005 12:42 pm
- Forum: ActiveX
- Topic: Editor->Series->Datasource->Function question
- Replies: 10
- Views: 14392
Hi Narcis,
Thank you, I received it. Actually I was subscribed to www.benrneda.com which was supposed to be your news? So now I believe it has changed to www.steema.com ?
Thank you, I received it. Actually I was subscribed to www.benrneda.com which was supposed to be your news? So now I believe it has changed to www.steema.com ?
- Mon Sep 19, 2005 4:52 pm
- Forum: ActiveX
- Topic: Editor->Series->Datasource->Function question
- Replies: 10
- Views: 14392
- Sun Sep 18, 2005 11:03 am
- Forum: ActiveX
- Topic: Candle serie - Open and Close bars size issue
- Replies: 13
- Views: 16945
Hi Pep, The basic code to create OHLC chart, nothig's special. Here it is: m_pChart->GetAspect().SetView3D(FALSE); m_pChart->GetPanel().SetColor(RGB(0,0,0)); m_pChart->GetPanel().SetMarginBottom(10); m_pChart->Series(nSeriesIndex).GetAsCandle().SetCandleStyle(1); //csCandleBar m_pChart->Series(nSeri...
- Thu Sep 15, 2005 3:29 pm
- Forum: ActiveX
- Topic: Candle serie - Open and Close bars size issue
- Replies: 13
- Views: 16945
- Tue Sep 13, 2005 12:39 pm
- Forum: ActiveX
- Topic: Candle serie - Open and Close bars size issue
- Replies: 13
- Views: 16945
- Tue Sep 13, 2005 10:44 am
- Forum: ActiveX
- Topic: Candle serie - Open and Close bars size issue
- Replies: 13
- Views: 16945
- Tue Sep 06, 2005 12:32 pm
- Forum: ActiveX
- Topic: Candle serie - Open and Close bars size issue
- Replies: 13
- Views: 16945
- Thu Aug 04, 2005 8:59 am
- Forum: ActiveX
- Topic: Editor->Series->Datasource->Function question
- Replies: 10
- Views: 14392
Thank you for prompt reply. I am using bar, area and candle series so far. m_ctlTChart.AddSeries(scArea); m_ctlTChart.AddSeries(scBar); m_ctlTChart.AddSeries(scCandle); here's how they are populated: Bar serie //Setting Data arrays m_ctlTChart.Series(nSeriesIndex).AddArray(nElementsCount, YValues, X...
- Wed Aug 03, 2005 10:40 am
- Forum: ActiveX
- Topic: Editor->Series->Datasource->Function question
- Replies: 10
- Views: 14392
Editor->Series->Datasource->Function question
Hi guys, What I am trying to do is to apply functions to chart via Chart Editor. However in the listbox Source Series underneath Available there's no any available serie. How can I fix it? I am populating series in the code via respective value arrays. Develop Platform: VC++ 6 Chart Component: Techa...
- Fri Jun 10, 2005 12:19 pm
- Forum: ActiveX
- Topic: is there something like onAfterPrintTchart event and more..?
- Replies: 5
- Views: 8630
Hi Pep, Thank you for reply. But given attention to issue #2, how I still find out if printing finished. As I understood your idea is 1) Export the chart to stream with regular view before print 2) chage look and feel for pritnout in OnBeforePrint which is ok 3) Import the chart from the stream afte...