Search found 3132 matches

by Sandra
Wed Mar 22, 2017 4:13 pm
Forum: VCL
Topic: Problems with binary installer...
Replies: 6
Views: 13125

Re: Problems with binary installer...

Hello Whookie, I would like suggest you remove the Installer folder %Program Files (x86)%\Steema Software\Steema TeeChart Pro VCL FMX 2017.20 and download again the installer from the Client AccessPage . Then, run the installer with administrator rights and try install again the Teechart Pro VCL/FMX...
by Sandra
Wed Mar 22, 2017 1:56 pm
Forum: ActiveX
Topic: multichart to 1 page pdf export?
Replies: 2
Views: 11283

Re: multichart to 1 page pdf export?

Hello nbp, I think the best option for you is taking a look in the Visual C++ examples, specifically to Printing example. The example is in the path below: %Program Files (x86)%\Steema Software\TeeChart Pro v2017 ActiveX Control\Examples\Visual C++\Version 6 \Printing In the example, is used a Menu ...
by Sandra
Tue Feb 21, 2017 9:14 am
Forum: .NET
Topic: Transparency in Area Series
Replies: 3
Views: 10106

Re: Transparency in Area Series

Hello theyiedl, I would like inform you, after doing some tests, we have added the problem you're experiniencing in Teechart.Net bugzilla tracker to fix it to upcoming versions. Here's the link: http://bugs.teechart.net/show_bug.cgi?id=1793 Feel free to add your mail to the CC list if the ticket to ...
by Sandra
Thu Feb 16, 2017 3:03 pm
Forum: .NET
Topic: Marks tips
Replies: 6
Views: 13463

Re: Marks tips

Hello biqpaulson, 1) For this chart, marks tips work correctly when I hover: But if I add ANY Z depth (either from our code using the "Z depth tool" or from your [very complex] tools dialog), marks no longer display when I hover. Why is this? I have adde the problem you're experiencing to TeeChart.N...
by Sandra
Thu Feb 16, 2017 10:50 am
Forum: .NET
Topic: Transparency in Area Series
Replies: 3
Views: 10106

Re: Transparency in Area Series

Hello theyield, I think can helpful for you combine the code below to resolve the problem you're experiencing: area2.AreaLines.Visible = false; area2.Opacity = 0; area2.Transparency = 100; area2.Color = Color.FromArgb(58, 214, 214, 214); Hoping this helps you, otherwise don't hesitate to contact us....
by Sandra
Fri Jan 27, 2017 10:25 am
Forum: ActiveX
Topic: Crash on Unload
Replies: 14
Views: 32451

Re: Crash on Unload

Hello SNPSUSER Although remote access is generally restricted to Pro-support customers, it remains an option as a later resort. At this stage though, we would prefer that you send us a video showing the problem if you feel that it will help us understand it. Do you activate GDI+ graphics at any stag...
by Sandra
Wed Jan 25, 2017 4:27 pm
Forum: VCL
Topic: Image export resolution
Replies: 7
Views: 14628

Re: Image export resolution

Hello Sharpenski,

Could you tell us which version of TeeChart Pro VCL/FMX are you using?

Also, I have done all the test you mention and I can't reproduce the problem using latest Teechart Pro VCL/FMX V2016.19.

Thanks in advance
by Sandra
Wed Jan 25, 2017 4:19 pm
Forum: VCL
Topic: Problem with new TeeChartVCL-2015.16.150901
Replies: 11
Views: 23218

Re: Problem with new TeeChartVCL-2015.16.150901

Hello Carlos, About the bug, I would like inform you that we gave an answer in the Bug ticket, where we explained the reason why we closed the bug. About the problem, you experiencing with legend check boxes and CrossTab Main series, firstly, I apologise with you. Secondly, I would like inform you I...
by Sandra
Wed Jan 25, 2017 11:31 am
Forum: VCL
Topic: Image export resolution
Replies: 7
Views: 14628

Re: Image export resolution

Hello Sharpenski, The code below exports a Chart image without compression with Best quality : uses TeExport, TeeJPEG,TeeBmpOptions,jpeg; procedure TForm1.Button1Click(Sender: TObject); begin TeeSaveToJPEGFile( Chart1, 'E:\tmp\VCL\TestImage\mychart.jpg',False,jpBestQuality,100, 5480, 8508 ); end; pr...
by Sandra
Tue Jan 24, 2017 1:13 pm
Forum: VCL
Topic: Printing gridvalues?
Replies: 3
Views: 7674

Re: Printing gridvalues?

Hello VideoTrack Re. "How can I retrieve the values in each of the cells from the QDChartGrid? I want to select certain values from certain cells. It seem a fairly straightforward task, but this is proving very difficult." The cell values of a ChartGrid are those of the Chart Series. The ChartGrid c...
by Sandra
Tue Jan 24, 2017 12:49 pm
Forum: ActiveX
Topic: Crash on Unload
Replies: 14
Views: 32451

Re: Crash on Unload

Hello SNPSUSER,

Could you attach for us the project, because we can reproduce the problem here? You can post your files at our upload page.

Thanks in advance
by Sandra
Tue Jan 24, 2017 12:45 pm
Forum: VCL
Topic: Image export resolution
Replies: 7
Views: 14628

Re: Image export resolution

Hello Sharpenski,

Unfortunately, I can't reproduce the problem you're experiencing. I have exported the chart to different image types (jpeg, gif, png..) and I can see any resolution problems. Could you tell us in which kind image the problem appear?

Thanks in advance,
by Sandra
Fri Jan 20, 2017 4:22 pm
Forum: VCL
Topic: Incorrect axis title position when using html
Replies: 9
Views: 17116

Re: Incorrect axis title position when using html

Hello Grzegorz,

Many thanks your detailed information. We review that and try to fix the bugs for next maintenance release.

Thanks in advance
by Sandra
Fri Jan 20, 2017 4:20 pm
Forum: VCL
Topic: vertically scaling each page
Replies: 4
Views: 10588

Re: vertically scaling each page

Hello Dave, If I understand well, you want scroll the vertical axis at same time you scroll horizontal axis through the ChartBarScroll component, is that? In that case, the code you use is correct to achieve your request, so you need change the axes scale in the ChartBarScroll Change events always. ...
by Sandra
Thu Jan 19, 2017 11:49 am
Forum: VCL
Topic: vertically scaling each page
Replies: 4
Views: 10588

Re: vertically scaling each page

Hello Dave, I have made a simple code where I have used a Scrollbar component vertically. Below you can show the code: uses Chart, TeeScroB, Series,TeeThemes; var Chart1: TChart; ScrollBar1: TChartScrollBar; horizLine1: THorizLineSeries; LookoutT: TLookoutTheme; procedure TForm1.FormCreate(Sender: T...