怎么实现柱形立方体报表,有没有代码,贴出来看看,动态的啊。有教程的也可以

解决方案 »

  1.   

    要看代码的话,去搜php chart很多常见是是php+GD, php+flash, php+svg三种,按需选择
      

  2.   

    我更喜歡用jquery插件 結合php json數據...
      

  3.   

    flex 有图表控件的,直接拖一下么好咧
      

  4.   

    你好纠结!这个貌似不需要PHP的!你可以使用js得php传过来的值 然后对其经行操作。
    想玩什么花样都可以嫌麻烦直接在百度上找js或者jq的插件。
    效果一流!
      

  5.   

    我只是想在php的网站上实现立方体的效果,之前用的gd,没能达到立方体的感觉。谁会,赐教一下。
      

  6.   

    你是想要这样的效果?
    $im = imagecreate(100,100);
    $background = imagecolorallocate($im, 255, 255, 255);
    $red = imagecolorallocate($im, 255, 0, 0);
    $ar = array(0, 100, 70, 100, 70, 30, 0, 30);
    imagefilledpolygon ($im, $ar, count($ar)/2, $red);$red = imagecolorallocate($im, 255, 192, 192);
    $ar = array(0, 30, 70, 30, 100, 0, 30, 0);
    imagefilledpolygon ($im, $ar, count($ar)/2, $red);$red = imagecolorallocate($im, 192, 128, 128);
    $ar = array(70, 100, 100, 70, 100, 0, 70, 30);
    imagefilledpolygon ($im, $ar, count($ar)/2, $red);imagegif($im);