HuasoFoundries/jpgraph

View on GitHub
src/text/TextPropertyBelow.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

/**
 * JPGraph v4.0.3
 */

namespace Amenadiel\JpGraph\Text;

/**
 * @class TextPropertyBelow
 */
class TextPropertyBelow extends TextProperty
{
    public function __construct($aTxt = '')
    {
        parent::__construct($aTxt);
    }

    public function GetColWidth($aImg, $aMargin = 0)
    {
        // Since we are not stroking the title in the columns
        // but rather under the graph we want this to return 0.
        return [0];
    }
}