Posts by Olavo Holanda • 291 points
5 posts
-
2
votes1
answer470
viewsA: Line chart on Chart, highchart or char-google
With Highcharts you can make a chart with two series: one in line and one in area. To get the result you want, just put null in the intersection values of the two charts, in your case: series: [{…
-
0
votes1
answer171
viewsA: Table names in Hibernate are created with lower case letters
I believe that this "problem" is not with Hibernate, but with Postgresql. By default Postgresql converts everything to lowercase internally. You can see more here:…
-
1
votes1
answer392
viewsA: How to keep menu open after :active
Try swapping :active for :Hover. I tested in codepen on line 63 of your css .top-menu > li:hover .megadrop { I don’t know if that’s the result you were expecting. I hope I’ve helped :)…
-
1
votes1
answer1232
viewsA: Display image stored in Database
It may be that the error is in your html to show the image, you are not specifying that it is a Base64. Try to change the last line to: echo 'data:image/jpeg;base64,'.base64_encode($bytes);…
-
4
votes2
answers173
viewsA: Simple XML Reader does not work properly
From what I understand the first callback is to search by the node name and the second callback by the node path, as you want the value of the "name" nodes, so it would look like this: <?php…