A
by amCharts
5 (29 reviews)
amCharts: Charts and Maps
Allows to easily add interactive charts and maps using amCharts libraries.
Tested up to WP 6.6 (Current: 6.9)
v1.4.5
Current Version v1.4.5
Updated 1 year ago
Last Update on 11 Sep, 2024
Synced 15 hours ago
Last Synced on
Rank
#5,028
+1 this week
Active Installs
2K+
—
No change
KW Avg Position
19.3
—
No change
Downloads
103.4K
+1 today
Support Resolved
0%
—
No change
Rating
100%
Review 5 out of 5
5
(29 reviews)
Next Milestone 3K
2K+
3K+
607
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Need 631 more installs to reach 3K+
Rank Changes
Current
#5,028
Change
Best
#
Downloads Growth
Downloads
Growth
Peak
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
5.0
29 reviews
Overall
100%
5
29
(100%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 3 of 3| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| ammap | 2 | — | Tag | 16 hours ago |
| amcharts | 3 | — | Tag | 16 hours ago |
| javascript charts | 53 | — | Tag | 16 hours ago |
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 1.4.5
- Last Updated
- Sep 11, 2024
- Requires WP
- 3.5+
- Tested Up To
- 6.6
- PHP Version
- N/A
- Author
- amCharts
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 5
- Reviews
- 29
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
WP Adminify – White Label WordPress, Admin Menu Editor, Login Customizer
7K+ installs
#2,735
Master Addons For Elementor - White Label, Free Widgets, Hover Effects, Conditions, & Animations
40K+ installs
#929
Nginx Helper
100K+ installs
#314
Advanced Ads – Ad Manager & AdSense
100K+ installs
#399
Custom Permalinks
100K+ installs
#416
Frequently Asked Questions
Common questions about amCharts: Charts and Maps
It's not a fully fledged chart/map editor. It's a plugin designed to get your chart/map code into Wordpress easily.
Do I need to include any JavaScript libraries in my theme code?
Nope. The plugin will take care of that for you. The required JavaScript libraries will be included in the footer of the page automatically.
Plugin will include only those libraries that are actually required to render the chart. If no charts are there on the page, no additional libraries will be included.
Let's keep the footprint small ;)
Can I insert a chart directly from my PHP code rather than shortcode?
Yes. Use the following PHP code:
<?php amcharts_insert( $chart_id ); ?>
Or, you can retrieve the chart object using following function:
<?php amcharts_get( $chart_id ); ?>
This will return an object with the following properties:
title - a chart title
post - a reference to original WP post object
resources - a list of resource urls
html - HTML code
javascript - JavaScript code
Do I need to include any JavaScript libraries in my theme code?
Nope. The plugin will take care of that for you. The required JavaScript libraries will be included in the footer of the page automatically.
Plugin will include only those libraries that are actually required to render the chart. If no charts are there on the page, no additional libraries will be included.
Let's keep the footprint small ;)
Can I insert a chart directly from my PHP code rather than shortcode?
Yes. Use the following PHP code:
<?php amcharts_insert( $chart_id ); ?>
Or, you can retrieve the chart object using following function:
<?php amcharts_get( $chart_id ); ?>
This will return an object with the following properties:
title - a chart title
post - a reference to original WP post object
resources - a list of resource urls
html - HTML code
javascript - JavaScript code
Any parameter prefixed with "data-" will be passed into chart code via global AmCharts.wpChartData object.
I.e.:
[amcharts id="pie-1" data-file="data1.csv" data-sort="asc"]
The above shortcode will insert the following code before actual chart code:
AmCharts.wpChartData = {
"file": "data1.csv",
"sort": "asc"
}
You can then reference those passed variables in your chart code. I.e.:
alert( AmCharts.wpChartData.file );
I.e.:
[amcharts id="pie-1" data-file="data1.csv" data-sort="asc"]
The above shortcode will insert the following code before actual chart code:
AmCharts.wpChartData = {
"file": "data1.csv",
"sort": "asc"
}
You can then reference those passed variables in your chart code. I.e.:
alert( AmCharts.wpChartData.file );
amcharts_shortcode_data ( $data - parsed data passed in via data-* parameters of the shortcode, $atts )
amcharts_shortcode_resources ( $resources - text data from resources box, $atts )
amcharts_shortcode_libs ( $libs - array of resouces, $atts )
amcharts_shortcode_javascript ( $javascript - JavaScript portion of the chart, $atts )
amcharts_shortcode_html ( $html - HTML portion of the chart, $atts )
Is this plugin WPML-compatible?
Yup. It fully supports WPML. You can create language-specific versions of the charts and maps. The plugin will automatically select proper language when displaying it.
amcharts_shortcode_resources ( $resources - text data from resources box, $atts )
amcharts_shortcode_libs ( $libs - array of resouces, $atts )
amcharts_shortcode_javascript ( $javascript - JavaScript portion of the chart, $atts )
amcharts_shortcode_html ( $html - HTML portion of the chart, $atts )
Is this plugin WPML-compatible?
Yup. It fully supports WPML. You can create language-specific versions of the charts and maps. The plugin will automatically select proper language when displaying it.