This topic is locked

Chart in a grid cell

6/23/2023 7:53:11 PM
PHPRunner General questions
Davor Geci authorDevClub member

Hello,
is there a way to put a chart in a grid cell, something like this:
img alt

fhumanes 6/24/2023

Hello,
To make graphics on the ranks of a list page, the first thing you should fix is whether you want the graphics to be generated in:

Greetings,
fernando

Davor Geci authorDevClub member 6/24/2023

Thanks Fernando for your reply.
Yes, your 2. (On the client) by using the built in Anychart plugin sounds like the solution.
So, in theory, I could insert a code snippet to a cell in a grid and code the Anychart chart to display the chart for this record.
It will be a challenge to do it.
Thanks, for the point in the right direction Fernando.

mbintex 6/27/2023

Barcharts can easily be built with custom view of the field and some CSS.
I have a tasks table with a priority field. Based on the priority value, the bar is longer or shorter and either red, orange or yellow.
if ($value>=6 and $value<=10) {$value = '<div style="background: red; width:'.$data["Prioritaet"].'0px;"> </div>';} elseif ($value>=3 and $value<=5) {$value = '<div style="background: orange; width:'.$data["Prioritaet"].'0px;"> </div>';} elseif ($value>=1 and $value<=2) {$value = '<div style="background: gold; width:'.$data["Prioritaet"].'0px;"> </div>';}

Davor Geci authorDevClub member 6/27/2023

Thanks mbintex for your soulution,
this is a very interesing and easy solution when we have one value to present. I will surely use it in my projects.
Maybe someone has done something like this in this picture?
img alt

Davor Geci authorDevClub member 7/7/2023

Thanks Sergey and the team.
Great and detailed presentation and explanation of how to do this (Charts in Grid Cells) was one of the topics in latest DevClub webinar (July 7, 2023).
I could not be present live, but watched the recording.
Thank you once again!!
Davor
P.S.
I highly recoment to everyone to join the DevClub, you can ask questions, participate in the live learning directly from Sergey and the team from Xlinesoft.
It's just $50 per month and we are together every week on Friday.

Admin 7/7/2023

Davor,
thank you for your kind words! Let me know if any help is required because that tutorial uses a quite basic chart with minimal customizations.