Split all files mith multiple classes into multiple files
This commit is contained in:
27
src/GraphStyleLine.php
Normal file
27
src/GraphStyleLine.php
Normal file
@@ -0,0 +1,27 @@
|
||||
<?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";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user