pChart and CSS not compatible? Programming Web Development by turt2live …;?php header ('Content-Type: image/png'); include("pChart/pData.class"); include("pChart/pChart.class"); // Dataset definition $DataSet = new pData…); $DataSet->SetXAxisUnit(""); // Initialise the graph $Test = new pChart(800,300); $Test->setFontProperties("Fonts/tahoma.ttf"… Re: pChart and CSS not compatible? Programming Web Development by pritaeas The outputted image is a transparent PNG. Either change the output format (if possible), or put the image in a white background. Re: pChart and CSS not compatible? Programming Web Development by turt2live I never thought of that, thank you :) Graph in php Programming Web Development by fugo.deepak …). How to achieve this. I 've checked many libraries like pchart, fusion chart, flash chart etc. but failed to get quadrant… exporting pchart images to pdf Programming Web Development by dinhunzvi i have the following code <?php require_once 'includes/initialize.php'; set_include_path( get_include_path() . PATH_SEPARATOR . CHARTS_PATH); require_once "class/pDraw.class.php"; require_once "class/pImage.class.php"; require_once "class/pData.class.php";… Re: exporting pchart images to pdf Programming Web Development by broj1 Use one of the PDF libraries out there. I use [tcpdf](http://www.tcpdf.org/) and am very happy with it. Find a function in your pdf library that deals with images. In tcpdf it is the `Image()` function (see an example [here](http://www.tcpdf.org/examples/example_009.phps)). You can either save the generated image to disk and use it in the Image() … Re: exporting pchart images to pdf Programming Web Development by Mahesh_12 Thanks.. I am following same idea but i am strugling to save the image can you explain how to save the image and how to get the saved image url Re: exporting pchart images to pdf Programming Web Development by Mahesh_12 Thanks.. I am following same idea but i am strugling to save the image can you explain how to save the image and how to get the saved image url Re: Create dynamic graph in php Programming Web Development by benhowdle89 pChart - amazing stuff, i'm graphing directly from mysql data with PHP [url]http://pchart.sourceforge.net/index.php[/url] Re: dynamic radar chart display with .jpg?param1=array(val1)&param2=array(val2) Programming Web Development by malatamil …> example.php <?php /* CAT:Polar and radars */ /* pChart library inclusions */ include("class/pData.class.php"); include…;Labels"); $MyData->setAbscissa("Labels"); /* Create the pChart object */ $myPicture = new pImage(222,209,$MyData,TRUE); /* Draw… Re: how to create graph in php? Programming Web Development by John roots You may also take a look at pChart : www.pchart.net Re: Open source pie chart library Programming Web Development by pritaeas If the graph is used for commercial use, the yes, you'll have to buy. [pChart](http://pchart.sourceforge.net/index.php) is another option. Re: how to create statistical graph in php? Programming Web Development by digwnews Look at this: [url]http://jpgraph.net/[/url] [url]http://pchart.sourceforge.net/[/url] Re: Bar Chart - Positive and Negative Values Programming Web Development by ajbest … my own script I found a GPU php class called pChart. This little class really has a lot of options to… Re: generate graph Programming Web Development by diafol In the absence of any code, I can't suggest anything other than looking at some of these... http://jpgraph.net/ or http://phpchart.net/ or http://pchart.sourceforge.net/ or many others Re: dynamic radar chart display with .jpg?param1=array(val1)&param2=array(val2) Programming Web Development by diafol Having said all that - if you're not using this in a page, just sending it in the body of an email, why not just use a PHP lib: http://pchart.sourceforge.net/documentation.php?topic=exemple8 Re: Graph in php Programming Web Development by nonshatter Hi there, Although I've never done drawing using PHP, I've previously carried out research on the available graphing software around for PHP. I am currently using one called [URL="http://www.fusioncharts.com/"]FusionCharts[/URL] which I feel is one of the best out there. You can plot data using XML, JSON or straight out of a database. …