mirror of
https://github.com/seigler/neat-charts
synced 2025-07-27 01:16:09 +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,
|
||||
'height' => 300,
|
||||
'barColor' => '#000',
|
||||
'risingFillColor' => '#0D0',
|
||||
'fallingFillColor' => '#D00',
|
||||
'risingColor' => '#0D0',
|
||||
'fallingColor' => '#D00',
|
||||
'markerColor' => '#000',
|
||||
'labelColor' => '#000',
|
||||
'fontSize' => 15,
|
||||
|
@ -86,13 +86,13 @@ namespace NeatCharts {
|
|||
</g>
|
||||
<g
|
||||
class="chart__rising-bars"
|
||||
fill="'.( $this->options['risingFillColor'] ).'"
|
||||
fill="'.( $this->options['risingColor'] ).'"
|
||||
>
|
||||
<path d="'.( $risingPoints ).'" />
|
||||
</g>
|
||||
<g
|
||||
class="chart__falling-bars"
|
||||
fill="'.( $this->options['fallingFillColor'] ).'"
|
||||
fill="'.( $this->options['fallingColor'] ).'"
|
||||
>
|
||||
<path d="'.( $fallingPoints ).'" />
|
||||
</g>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue