mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-08 20:22:53 +03:00
30 lines
1.0 KiB
Handlebars
30 lines
1.0 KiB
Handlebars
<div class="gh-dashboard5-minichart gh-dashboard5-mrr">
|
|
<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}}
|
|
<div class="gh-dashboard5-chart-container">
|
|
<EmberChart
|
|
@type={{this.chartType}}
|
|
@data={{this.chartData}}
|
|
@options={{this.chartOptions}} />
|
|
|
|
<div id="gh-dashboard5-mrr-tooltip" class="gh-dashboard5-tooltip">
|
|
<div class="gh-dashboard5-tooltip-label">
|
|
-
|
|
</div>
|
|
<div class="gh-dashboard5-tooltip-value">
|
|
-
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{/if}}
|
|
</div>
|
|
</div>
|