Posts by Alexandre Prezzi • 89 points
9 posts
-
2
votes1
answer1589
viewsQ: React fetch() POST
I have a API (POST) in which I pass some parameter and it returns me results and the question is the following: I got a guy Dashboard where I have to take DIA data and MES data (using the same API,…
-
0
votes1
answer125
viewsQ: Show data array
I have the following data obtained from a query: I would like to read this data and show it on the screen, but first show all the goals, then show all the challenges and so on. <?php $resultado =…
-
0
votes0
answers30
viewsQ: Values in Graphs
How do I make values appear next to the bars on the graph? var ctx = document.getElementById('desafios').getContext('2d'); window.myHorizontalBar = new Chart(ctx, { type: 'horizontalBar', data:…
chartjsasked Alexandre Prezzi 89 -
0
votes0
answers102
viewsQ: Show data on screen
I’m generating charts and the data comes through a database query. These dice are played in a two-position array. In the "Labels" Script that should return the name of the vendors, in the case they…
-
-1
votes1
answer185
viewsQ: Graphics with PHP
I’m having trouble generating charts using data from the bank. I have a query in the database that generates an array as a result. (Follow below) <?php require_once './setaqueryDash.php';…
-
2
votes1
answer66
viewsQ: Assistance with SQL
Guys I have the following problem... I have a table XXX that has the following fields: k803, codrer, periodo, meta, challenge. The table shows the goal and challenge of each store representative 802…
sqlasked Alexandre Prezzi 89 -
0
votes5
answers280
viewsA: Breaking lines in a date attribute when displaying in front-end
A new alternative to writing the data. If the person does not use any filter parameter, it will not appear and will not be a blank line <?php foreach($BlobParams as $blobs){ if($blobs != ""){…
-
0
votes5
answers280
viewsA: Breaking lines in a date attribute when displaying in front-end
On the level of curiosity and also not sure if it is the best way, I managed to solve the case as follows in the call of the method popover: $('[data-toggle="popover"]').popover({html: true}) I…
-
0
votes5
answers280
viewsQ: Breaking lines in a date attribute when displaying in front-end
Within a table I have the following structure: <td> <a href="#" data-toggle="popover" title="Dados" data-trigger="focus" data-content=" <?php echo $BlobParams[0].'<br>'; echo…