28 lines
578 B
PHP
28 lines
578 B
PHP
<?php
|
|
|
|
/** DomFramework
|
|
* @package domframework
|
|
* @author Dominique Fournier <dominique@fournier38.fr>
|
|
* @license BSD
|
|
*/
|
|
|
|
namespace Domframework;
|
|
|
|
/** The graphStyleLine : draw a graph with line */
|
|
class GraphStyleLine extends GraphStyleLinePoints
|
|
{
|
|
/** The point color background. To hide the points, choose "transparent"
|
|
*/
|
|
protected $pointBgcolor = "transparent";
|
|
|
|
/** The point color border
|
|
*/
|
|
protected $pointColor = "transparent";
|
|
|
|
/** Return the name of the style */
|
|
public function name()
|
|
{
|
|
return "line";
|
|
}
|
|
}
|