I see our demo works with NET 5 and reproduces the disappearing chart from NET 6.
We'll try to make a Blazor server demo in NET 6 or NET 7 as soon as possible.
At this point I'm not sure if it will require any modification in our library or just in the example.
Greetings! Steema Support Central writes to inform you of the availability of the latest TeeChart VCL/FMX 2023.37.230130 release with full RAD Studio 11 Alexandria, Update 2 (RX/DX/CX) support. The new update includes TeeChart Pro and Standard binary and source code installers for all development en...
Greetings! Steema Support Central writes to inform you of the availability of the latest TeeChart VCL/FMX 2023.37.230130 release with full RAD Studio 11 Alexandria, Update 2 (RX/DX/CX) support. The new update includes TeeChart Pro and Standard binary and source code installers for all development en...
Hello, I can reproduce the problem and simplifying it to the minimum, you just need two TBarSeries . The TAreaSeries doesn't look necessary: var Chart1: TChart; procedure TForm1.FormCreate(Sender: TObject); begin Chart1:=TChart.Create(Self); with Chart1 do begin Parent:=Self; Align:=alClient; AddSer...
I can't reproduce the problem with it, so I can't say what's wrong in your project yet.
However, you could try if it works for you so we can see if we are missing anything else.
Hello, With following delphi code, I'm importing your tee file and adding an OnClickSeries event to the created TDBChart . procedure TForm1.FormCreate(Sender: TObject); var DBChart1: TDBChart; begin Caption:=TeeMsg_Version; DBChart1:=TDBChart.Create(Self); LoadChartFromFile(DBChart1, 'F:\Downloads\t...
Hello, Does the path ("C:\Delphi\TeeChart Pro VCL FMX Source Code\Source\VCL") contain the TeeChart prefixed units? Are you trying with a new simple project? The steps I just did: - Install TeeChart v2022.36 binary version. You need this if you want to access the components at design-time. It will a...
Hello, That file attached is a .png with a wrong extension. To export a chart to a .tee file, you should include the "FMXTee.Store.hpp" in the .h: #include <FMXTee.Store.hpp> And run something like this when the chart is drawn (ie with a button): void __fastcall TForm1::Button1Click(TObject *Sender)...
Sorry, I didn't remember Community versions of RAD Studio don't support command line compiling.
Back to the previous idea then.
Make sure you have the "C:\Delphi\TeeChart Pro VCL FMX Source Code\Source\VCL" path int he library path and also put the "VCLTee" prefix in the "unit scope names".