Ghost/ghost/admin/app/components/dashboard/v5/charts/mrr.hbs

21 lines
732 B
Handlebars
Raw Normal View History

<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>
{{/if}}
</div>
</div>