* @package zin * @link http://www.zentao.net */ namespace zin; /** * 仪表盘(burn)部件类。 * The burn widget class. * * @author Hao Sun */ class burn extends wg { /** * Define widget properties. * * @var array * @access protected */ protected static $defineProps = array( 'data?: string|array', // 数据源 'referenceLine?: bool=false' // 参考线 ); /** * Build widget. */ protected function build() { return zui::burn(inherit($this)); } }