Search found 9150 matches
- Tue Jul 05, 2022 7:45 am
- Forum: VCL
- Topic: Show/Hide Series checkboxes too big
- Replies: 6
- Views: 378
Re: Show/Hide Series checkboxes too big
Hello, I have two monitors, one at 100% and the other at 175%. I'm running the following test application: HighDPI_RAD10.4.zip Starting the application at the 100% monitor and dragging it to the 175% monitor everything seems to be correctly resized: HighDPI_RAD10_4_Swp08enjS3.png Starting the applic...
- Mon Jul 04, 2022 12:35 pm
- Forum: VCL
- Topic: Cursor XValue sometime different from current cursor position
- Replies: 4
- Views: 152
Re: Cursor XValue sometime different from current cursor position
Hello, The issue here is the OnMouseMove event is triggered before processing the SnapToPoint code so the XValue at that moment still holds the old value. Instead, you could use the TCursorTool 's OnSnapChange event. Ie: //... #include <VCLTee.TeeTools.hpp> //----------------------------------------...
- Wed Jun 29, 2022 2:51 pm
- Forum: VCL
- Topic: Questions regarding LoadGraphOptions
- Replies: 2
- Views: 224
Re: Questions regarding LoadGraphOptions
Hello, I've done a test and it seems to work fine for me here both without and with data: withoutData.png withData.png Note I'm using streams instead of files, but it shouldn't be very different: uses Chart, Series, TeeGDIPlus, TeeStore, TeeProcs; var origChart, teeChart, xmlChart: TChart; procedure...
- Wed Jun 29, 2022 2:21 pm
- Forum: VCL
- Topic: Cursor XValue sometime different from current cursor position
- Replies: 4
- Views: 152
Re: Cursor XValue sometime different from current cursor position
Hello,
What TeeChart version are you using?
It seems to work fine here with v2022.35:
What TeeChart version are you using?
It seems to work fine here with v2022.35:
- Tue Jun 28, 2022 3:44 pm
- Forum: VCL
- Topic: Still cannot use palette tool
- Replies: 11
- Views: 5896
Re: Still cannot use palette tool
Hello,
I'm sorry for the lack of reply here.
Have you found any configuration that may be explaining this?
I'm sorry for the lack of reply here.
Have you found any configuration that may be explaining this?
- Tue Jun 28, 2022 3:42 pm
- Forum: VCL
- Topic: Show/Hide Series checkboxes too big
- Replies: 6
- Views: 378
Re: Show/Hide Series checkboxes too big
Thanks for reporting it.
We are investigating what happened and we'll be back here asap.
We are investigating what happened and we'll be back here asap.
- Tue Jun 28, 2022 3:27 pm
- Forum: VCL
- Topic: Use TeeChart in an IntraWeb application
- Replies: 11
- Views: 4375
Re: Use TeeChart in an IntraWeb application
Hello, Check "Generate all C++Builder files (including package libs)" for both packages and the TIWChart component will appear in the tool palette. TeeChart 2022 for IntraWeb 15.0 for RADStudio 11.zip Undeclared identifier: 'TCustomChart' I'm not sure how the compiler can be finding TCustomChart to ...
- Mon Jun 27, 2022 8:39 am
- Forum: FMX
- Topic: Can't compile TeeChartVCLFMX 2022.35 Source for Linux option
- Replies: 4
- Views: 125
Re: Can't compile TeeChartVCLFMX 2022.35 Source for Linux option
Hello,
I'm afraid TeeChart can't be compiled for linux with TeeRecompile for now.
I'm afraid TeeChart can't be compiled for linux with TeeRecompile for now.
- Mon Jun 27, 2022 7:00 am
- Forum: FMX
- Topic: Can't compile TeeChartVCLFMX 2022.35 Source for Linux option
- Replies: 4
- Views: 125
- Mon Jun 27, 2022 6:56 am
- Forum: VCL
- Topic: Is TeeTree still maintained?
- Replies: 1
- Views: 369
Re: Is TeeTree still maintained?
Hello,
TeeTree is shipped with TeeChart since years ago, that's why it doesn't appear as a separated product in the menu.
It's true that it hasn't received big updates recently but it doesn't mean it isn't maintained.
Feel free to ask here or post any bug you may find at bugzilla.
TeeTree is shipped with TeeChart since years ago, that's why it doesn't appear as a separated product in the menu.
It's true that it hasn't received big updates recently but it doesn't mean it isn't maintained.
Feel free to ask here or post any bug you may find at bugzilla.
- Thu Jun 16, 2022 9:38 am
- Forum: VCL
- Topic: Drawing a specific bandline on an IsoSurface plot
- Replies: 1
- Views: 243
Re: Drawing a specific bandline on an IsoSurface plot
Hello, I'm afraid there's no property to do this. However, you can do a trick. You can draw the series twice. - First, draw the series without BandPen the first time, and prepare a special palette with a single Level . - Secondly, draw the series without Brush and with a custom Palette which has a s...
- Wed Jun 15, 2022 2:13 pm
- Forum: VCL
- Topic: Exception with TSelectorTool and Eurekalog
- Replies: 2
- Views: 336
Re: Exception with TSelectorTool and Eurekalog
Hello, I don't have EurekaLog here, but I've done a simple example creating a thousand forms containing a TChart with a TBarSeries and a TSelectorTool and, looking at the Task Manager while it does the job, the memory looks stable at about 2,9MB. SelectorToolMemory.zip Feel free to modify the exampl...
- Wed Jun 15, 2022 1:26 pm
- Forum: VCL
- Topic: Use TeeChart in an IntraWeb application
- Replies: 11
- Views: 4375
Re: Use TeeChart in an IntraWeb application
Hello,
You need to add the folder where you uncompressed the zip to the "Library path" so the compiler can find the IWCompTeeChart unit.
- Wed Jun 15, 2022 1:24 pm
- Forum: VCL
- Topic: Map Series and Zoom
- Replies: 1
- Views: 246
Re: Map Series and Zoom
Hello Peter, Indeed, the event is capturing the action and not propagating the event. If you want to change this behaviour, you can set CancelMouse property to False : procedure TForm1.Chart1ClickSeries(Sender: TCustomChart; Series: TChartSeries; ValueIndex: Integer; Button: TMouseButton; Shift: TSh...
- Thu Jun 09, 2022 1:35 pm
- Forum: VCL
- Topic: Use TeeChart in an IntraWeb application
- Replies: 11
- Views: 4375
Re: Use TeeChart in an IntraWeb application
Hello, The Pro packages would probably work for you but I've made new ones separated in 3 folders (Pro, Std, and StdCom) for more clarity. Note the "Std" packages are for TeeChart Standard/Lite shipped with the IDE, while the "StdCom" packages are for TeeChart Standard Commercial version. TeeChart 2...