TobiS Posted October 8, 2020 Posted October 8, 2020 Hello, i got a more than weird problem while creating TUniLineSeries in the "UniFormCreate" event of the main form. I can only create 27 series lines. In this case i can actually have more than 27 lines. Code i use to to Crate it serieNeu := TUniLineSeries.Create(ChartCopaQuote); serieNeu.Parent := ChartCopaQuote; serieNeu.Name := 'CopaQuoteSerie' + IntToStr(RECORDID.AsInteger); serieNeu.Title := TableGSBezeichnung.AsString; repLineSeries := ChartPoolCopaQuote.Chart.AddSeries(TLineSeries.Create(ChartPoolCopaQuote)) as TLineSeries; repLineSeries.LegendTitle := TableGSBezeichnung.AsString; repLineSeries.XValues.Order := loAscending; after the 28th is inserted i get the error JS Error: Unexpected identifier JS Error: O105 is not defined both are in ext-sync-min.js:9 Any idea why this is happening? I did check RECORDID and Title and they are only used once. Best Regards Quote
TobiS Posted October 8, 2020 Author Posted October 8, 2020 Forgot to mention. i am using version 1.90.0.1535 Quote
Sherzod Posted October 8, 2020 Posted October 8, 2020 1 hour ago, TobiS said: I can only create 27 series lines. In this case i can actually have more than 27 lines. Hello, Can you make a simple testcase to check? Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.