mirror of
https://github.com/seigler/neat-charts
synced 2025-07-27 09:26:10 +00:00
changed candlestickchart option names
This commit is contained in:
parent
b243b5739b
commit
6fa356305d
1 changed files with 4 additions and 4 deletions
|
@ -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>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue