A
by martynasma
5 (29 reviews)
amCharts: Charts and Maps
Allows to easily add interactive charts and maps using amCharts libraries.
Compatible with WP 7
v1.4.6
Current Version v1.4.6
Updated 2 months ago
Last Update on 19 May, 2026
Refreshed 11 hours ago
Last Refreshed on
Rank
#5,108
-5 this week
Active Installs
2K+
—
No change
KW Avg Position
10.8
+0.2 better
Downloads
104.6K
+8 today
Support Resolved
0%
—
No change
Rating
100%
Review 5 out of 5
5
(29 reviews)
Next Milestone 3K
2K+
3K+
839
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 213 more installs to reach 3K+
Rank Changes
Current
#5,108
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 5 of 5| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| amcharts | 1 | — | Tag | 1 day ago |
| ammap | 1 | — | Tag | 1 day ago |
| javascript charts | 1 | — | Tag | 1 day ago |
| charts | 8 | — | Tag | 1 day ago |
| maps | 43 | — | Tag | 1 day 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.6
- Last Updated
- May 19, 2026
- Requires WP
- 3.5+
- Tested Up To
- 7
- PHP Version
- N/A
- Author
- martynasma
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
Adminify – White Label, Admin Menu Editor, Login Customizer
7K+ installs
#2,724
Master Addons for Elementor – Elementor Addons, Widgets, Mega Menu Builder, Popup Builder, Widget Builder & Template Kits
30K+ installs
#988
WP Go Maps – Google Map, OpenStreetMap, Leaflet Map
300K+ installs
#198
Nginx Helper
200K+ installs
#277
Custom Permalinks
100K+ installs
#402
Frequently Asked Questions
Common questions about amCharts: Charts and Maps
Yes. You can either set the plugin to use publically available libraries loaded from www.amcharts.com or from your local server.
Plugin will use amCharts 5 when installed anew. You are able to switch between versions in plugin's settings.
No. This plugin allows editing a code directly in Wordpress admin as well as inserting the charts into posts or pages using shortcodes. It's not a fully fledged chart/map editor. It's a plugin designed to get your chart/map code into Wordpress easily.
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 ;)
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
Yes, starting from version 1.0.7. 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 );
Yes: 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 )
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.