問題描述
我見過一個 facebook 應用程序,其中單擊一個單選按鈕會呈現一個圖表.
如下圖所示:
我想知道是否有任何類似的圖形庫可以在 php 中生成相同的圖形.
謝謝,
潘卡伊
實際上,生成這種圖形很容易——只需使用兩個 DIV
s——一個是 100% 寬度的條,另一個DIV 是在第一個 DIV 中制作您需要的背景顏色 %.你甚至可以在其中包含文本.簡單,只是簡單的 HTML/CSS.
更新:
HTML:
CSS:
.bar { 寬度:99%;邊框:1px 實心 #000;}.percentage { 背景:#000;}
I have seen a facebook application in which clicking on a radio button renders a graph.
As you can see below:
I wanted to know whether there is any similar graph library through which i can generate the same graph in php.
Thanks,
Pankaj
actually, generating this kind of graph is pretty easy - just use two DIV
s - one is a 100% width bar, another DIV is in that first DIV making background colored % you require. you can even include text in that. easy, just plain HTML/CSS.
UPDATE:
HTML:
<div class="bar">
<div class="percentage" style="width:66%">This is 66% wide div</div>
</div>
CSS:
.bar { width: 99%; border: 1px solid #000; }
.percentage { background: #000; }
這篇關于使用php的簡單水平條形圖的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!