mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-22 10:21:36 +03:00
18 lines
559 B
Handlebars
18 lines
559 B
Handlebars
|
<Dashboard::v5::Parts::Metric
|
||
|
@label={{this.chartTitle}}
|
||
|
@value="{{this.currentMRRFormatted}}"
|
||
|
@trends={{this.hasTrends}}
|
||
|
@percentage={{this.mrrTrend}} />
|
||
|
|
||
|
<div class="gh-dashboard5-chart">
|
||
|
{{#if this.loading}}
|
||
|
<div class="gh-dashboard5-chart-loading" style={{html-safe (concat "height: " this.chartHeight "px;")}}/>
|
||
|
{{else}}
|
||
|
<EmberChart
|
||
|
@type={{this.chartType}}
|
||
|
@data={{this.chartData}}
|
||
|
@options={{this.chartOptions}}
|
||
|
@height={{this.chartHeight}} />
|
||
|
{{/if}}
|
||
|
</div>
|