⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ofc_chart.php

📁 Open Flash Chart is a program for creating charts in Flash to display in Web pages. You can create b
💻 PHP
字号:
<?php/** * PHP Integration of Open Flash Chart * Copyright (C) 2008 John Glazebrook <open-flash-chart@teethgrinder.co.uk> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA */require_once('OFC/JSON.php');require_once('OFC/JSON_Format.php');require_once('OFC/OFC_Elements.php');require_once('OFC/Charts/OFC_Charts_Area.php');require_once('OFC/Charts/OFC_Charts_Bar.php');require_once('OFC/Charts/OFC_Charts_Line.php');require_once('OFC/Charts/OFC_Charts_Pie.php');require_once('OFC/Charts/OFC_Charts_Scatter.php');require_once('OFC/Charts/Area/OFC_Charts_Area_Hollow.php');require_once('OFC/Charts/Bar/OFC_Charts_Bar_Filled.php');require_once('OFC/Charts/Bar/OFC_Charts_Bar_3d.php');require_once('OFC/Charts/Bar/OFC_Charts_Bar_Glass.php');require_once('OFC/Charts/Bar/OFC_Charts_Bar_Horizontal.php');require_once('OFC/Charts/Bar/OFC_Charts_Bar_Sketch.php');require_once('OFC/Charts/Bar/OFC_Charts_Bar_Stack.php');require_once('OFC/Charts/Line/OFC_Charts_Line_Dot.php');require_once('OFC/Charts/Line/OFC_Charts_Line_Hollow.php');class OFC_Chart{	function OFC_Chart()	{		$this->title = new OFC_Elements_Title( "Many data lines" );		$this->elements = array();	}	function set_title( $t )	{		$this->title = $t;	}	function set_x_axis( $x )	{		$this->x_axis = $x;	}	function set_y_axis( $y )	{		$this->y_axis = $y;	}	function add_y_axis( $y )	{		$this->y_axis = $y;	}	function set_y_axis_right( $y )	{		$this->y_axis_right = $y;	}	function add_element( $e )	{		$this->elements[] = $e;	}	function set_x_legend( $x )	{		$this->x_legend = $x;	}	function set_y_legend( $y )	{		$this->y_legend = $y;	}	function set_bg_colour( $colour )	{		$this->bg_colour = $colour;	}	function toString()	{		$json = new Services_JSON();		return $json->encode( $this );	}	function toPrettyString()	{		return json_format( $this->toString() );	}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -