.circleci
assets
bin
data
inc
lang
patches
tests
utils
views
admin-pages
base
broadcast
checkout
customers
dashboard-statistics
filter.php
widget-countries.php
widget-forms.php
widget-most-visited-sites.php
widget-mrr-growth.php
widget-new-accounts.php
widget-revenue.php
widget-tax-by-code.php
widget-tax-by-day.php
widget-tax-graph.php
widget-taxes.php
dashboard-widgets
domain
dynamic-styles
email
emails
events
invoice
legacy
limitations
memberships
payments
settings
shortcodes
sites
system-info
taxes
ui
wizards
about.php
admin-notices.php
classes.php
phpcs.xml
.gitignore
.phpcs.xml.dist
LICENSE
autoload.php
composer.json
composer.lock
constants.php
loco.xml
phpstan.neon.dist
phpunit.xml.dist
readme.txt
rector.php
sunrise.php
uninstall.php
wp-multisite-waas.php
33 lines
632 B
PHP
33 lines
632 B
PHP
<?php
|
|
/**
|
|
* Graph base view.
|
|
*
|
|
* @since 2.0.0
|
|
*/
|
|
?>
|
|
<div class="wu-mt-6 wu-mb-0">
|
|
|
|
<div v-show="false" class="wu-text-center wu-rounded wu-flex wu-items-center wu-justify-center wu-uppercase wu-font-semibold wu-text-xs wu-h-full wu-text-gray-700" style="height: 300px;">
|
|
|
|
<span class="wu-blinking-animation">
|
|
|
|
<?php _e('Loading...', 'wp-ultimo'); ?>
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
<div id="chart_mrr_growth">
|
|
<apexchart
|
|
v-cloak
|
|
height="300"
|
|
:type="chart_options.mrr_growth.chartOptions.chart.type"
|
|
:options="chart_options.mrr_growth.chartOptions"
|
|
:series="chart_options.mrr_growth.series"
|
|
>
|
|
</apexchart>
|
|
</div>
|
|
|
|
</div>
|
|
|