I want to create a matrix that changes colour depending on whether a value is reached or exceeded.
My problem is that I can’t make the grid big enough.
Is it possible to expand the table on the right with several columns?
There should be about 15 more columns. In other words, you should be able to swipe to the right.
Not possible unless you’re creating some sort of grid in a 3rd party app (like quickcharts or charts.js) that is then displayed in an image/webview component (depending on the platform utilized.)
You could dynamically generate an html table with the appropriate formatting and display that on the screen. This won’t allow you to interact with the matrix, but it would be useful for display purposes.
Still should be doable. It’s just a matter of using IF columns and Template columns to build out each <td> tag for each cell (with some inline CSS styling based on the calculated value), then wrapping it in a <tr> tag for each row, and finally wrap the whole thing in a <table> tag. Then display it using a rich text component.
Hi @Robert_Petitto, it may be a stupid question, How charts.js can be integrated in glide pages using web view component? I have worked only with quickscharts only but want to start using charts.js. Appreciate your help!
What I usually do is work on a function in Github. Define your input variables, setup a variable to store your HTML, CSS and JS code, and return it as URI.