❶ 怎么不安装类库用php画曲线图和饼图
php本身没有画图功能。都是通过GD库等外部扩展实现的。如果只是单纯的曲线图和饼图,可以考虑使用前端js代码实现,比如iChart等插件都能做出很漂亮的示意图。比GD搞出来的要漂亮,而且是动态的,可以根据点击进行交互。
❷ php 如何制作K线图,就是股市那种波浪图
可以搜索下Highcharts ,建议搜索Highcharts中文网里面有API文档,各种DEMO,唯一的缺点就是中文文档还在完善中.....
Highcharts 是一个用纯javaScript编写的一个图表库, 能拍前够很简单便捷的在web网站或是web应用程序添加有交互性的图表,并且免费提供毁销给个人学习、个人网站和非商业用途使用。HighCharts支持的图表类型有曲线图、区域图、柱状图、饼状图、散状纤贺游点图和综合图表。
http://www.hcharts.cn/demo/highstock.php?p=79
望采纳 Thx
❸ 我想用openflashchar做个饼状图 求大神指点 有图
<?php
include_once 'ofc-library/open_flash_chart_object.php';
open_flash_chart_object( 300, 300, 'http://'. $_SERVER['SERVER_NAME'] .'/open-flash-chart/gallery-data-39.php' );
?>
<?php
// generate some random data
srand((double)microtime()*1000000);
$data = array();
$links = array();
for( $i=0; $i<5; $i++ )
{
$val = rand(5,15);
$data[] = $val;
$links[] = "javascript:alert('$val')";
}
include_once( 'ofc-library/open-flash-chart.php' );
$g = new graph();
$g->bg = '#E4F0DB';
$g->pie(60,'#E4F0DB','{display:none;}',false,1);
//
// pass in two arrays, one of data, the other data labels
//
$g->pie_values( $data, array('IE','Firefox','Opera','Wii','Other','Slashdot'), $links );
//
// Colours for each slice, in this case some of the colours
// will be re-used (3 colurs for 5 slices means the last two
// slices will have colours colour[0] and colour[1]):
//
$g->pie_slice_colours( array('#d01f3c','#356aa0','#C79810') );
$g->set_tool_tip( 'Label: #x_label#<br>Value: #val#%&' );
$g->title( 'Pie Chart', '{font-size:18px; color: #d01f3c}' );
echo $g->render();
?>
有解释,翻译下直接套就行。。
有困难找浩哥啊