Search found 5 matches

by
Fri Aug 26, 2022 2:01 pm
Forum: JavaScript / HTML5
Topic: Javascript / HTML5 teechart flickering/blinking problem
Replies: 7
Views: 18549

Re: Javascript / HTML5 teechart flickering/blinking problem

Hello, Yes, the approach I suggested in my last post would have its challenges as you'd need to run the timer refresh routine in the framed chart page, not the container where you have it now. Using TeeChart NET's Javascript export externalcode would be the way to do that, but would take a bit of t...
by
Mon Aug 22, 2022 8:21 am
Forum: JavaScript / HTML5
Topic: Javascript / HTML5 teechart flickering/blinking problem
Replies: 7
Views: 18549

Re: Javascript / HTML5 teechart flickering/blinking problem

Hello, The solution would be to send, once the Charft has been initially loaded, subsequent data directly to the javascript. The ReadData function on your javascript page could call the data directly. ie.. you setup an URL to return the new data, then you can add it by using the javascript series a...
by
Thu Aug 11, 2022 9:11 am
Forum: JavaScript / HTML5
Topic: Javascript / HTML5 teechart flickering/blinking problem
Replies: 7
Views: 18549

Re: Javascript / HTML5 teechart flickering/blinking problem

Hello, If you will be getting the new data in the server side, you can connect the server and the client with SignalR. Here there's an example using it. In this example the chart is fully created in Javascript. However, the same concepts should apply for a javascript chart generated from a .NET cha...
by
Mon Aug 08, 2022 1:13 pm
Forum: JavaScript / HTML5
Topic: Javascript / HTML5 teechart flickering/blinking problem
Replies: 7
Views: 18549

Re: Javascript / HTML5 teechart flickering/blinking problem

Sending data from server side to client side is not problem, the problem is the way how teechart being update.
I was looking for a way to do not set the chart source again, so it won't blink I think.
I looked at the code in Github for won't work for Steema teechart.
Is there another way or solution?
by
Fri Aug 05, 2022 12:24 pm
Forum: JavaScript / HTML5
Topic: Javascript / HTML5 teechart flickering/blinking problem
Replies: 7
Views: 18549

Javascript / HTML5 teechart flickering/blinking problem

Hello all, I have an ASP.net project and I'm using Javascript/HTML5 steema teechart in my project. I want to update lines data every second, but the problem is the whole chart will update and cause flickering/blinking. Can someone please help me with this problem? :( This is my Controller code: publ...