changed candlestickchart option names

This commit is contained in:
Joshua Seigler 2016-07-07 02:27:42 -04:00
parent b243b5739b
commit 6fa356305d

View file

@ -6,8 +6,8 @@ namespace NeatCharts {
'width' => 1200, 'width' => 1200,
'height' => 300, 'height' => 300,
'barColor' => '#000', 'barColor' => '#000',
'risingFillColor' => '#0D0', 'risingColor' => '#0D0',
'fallingFillColor' => '#D00', 'fallingColor' => '#D00',
'markerColor' => '#000', 'markerColor' => '#000',
'labelColor' => '#000', 'labelColor' => '#000',
'fontSize' => 15, 'fontSize' => 15,
@ -86,13 +86,13 @@ namespace NeatCharts {
</g> </g>
<g <g
class="chart__rising-bars" class="chart__rising-bars"
fill="'.( $this->options['risingFillColor'] ).'" fill="'.( $this->options['risingColor'] ).'"
> >
<path d="'.( $risingPoints ).'" /> <path d="'.( $risingPoints ).'" />
</g> </g>
<g <g
class="chart__falling-bars" class="chart__falling-bars"
fill="'.( $this->options['fallingFillColor'] ).'" fill="'.( $this->options['fallingColor'] ).'"
> >
<path d="'.( $fallingPoints ).'" /> <path d="'.( $fallingPoints ).'" />
</g> </g>