by bobbingwide
5 (1 reviews)
SB Chart block
Displays a Chart for CSV content.
Tested up to WP 6.8 (Current: 7.0.2)
v1.3.1
Current Version v1.3.1
Updated 1 year ago
Last Update on 18 Apr, 2025
Refreshed 9 hours ago
Last Refreshed on
Rank
#10,233
+34 this week
Active Installs
300+
-22.3%
KW Avg Position
14.5
-0.3 better
Downloads
7.6K
+6 today
Support Resolved
0%
—
No change
Rating
100%
Review 5 out of 5
5
(1 reviews)
Next Milestone 400
300+
400+
1,930
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 65 more installs to reach 400+
Rank Changes
Current
#10,233
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
1 reviews
Overall
100%
5
1
(100%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 4 of 4| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| Horizontal bar chart | 11 | — | Tag | 1 day ago |
| Bar chart | 14 | — | Tag | 1 day ago |
| Line chart | 16 | — | Tag | 1 day ago |
| pie chart | 17 | — | 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.3.1
- Last Updated
- Apr 18, 2025
- Requires WP
- 5.6.0+
- Tested Up To
- 6.8
- PHP Version
- 7.2.0 or higher
- Author
- bobbingwide
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 5
- Reviews
- 1
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowFrequently Asked Questions
Common questions about SB Chart block
So far... Line and stacked line, with optional fill Bar and stacked bar Horizontal bar and stacked horizontal bar Pie
There are 6 predefined color palettes: choose the color palette from a drop down list. Use the Background color overrides and border color overrides fields to set custom color values.
Options to control the chart display are: Stacked - Toggle on to stack line or bar charts Begin Y axis at 0 toggle Fill toggle for line charts Time line toggle for a date based axis, with selectable Time unit (stepSize) Y-axes for multi axis charts Color palette dropdown Background color overrides. Enter comma separated hex codes. Border color overrides. Enter comma separated hex codes. Opacity - set the opacity of the background colours. Height of the chart, in pixels Bar thickness in pixels Tension - for curved line charts Legend font size X-axis font size
v1.2.6 delivers chartjs v4.4.2 and chartjs-adapter-date-fns v3.0.0
Chart or SB Chart
If your first language is not English then you could try: French - graphique German - Diagramm Dutch - grafiek Italian - grafico Spanish - gráfico
No. The plugin is delivered with the production version of the block. If you do wish to modify the code then you can find instructions in the src folder.
Charts can be embedded with the shortcode chartjs. The general syntax is as follows: [chartjs attribute="attribute value"]CSV content[/chartjs] Several attributes can be added at the same time. Example: [chartjs attribute1="attribute1 value" attribute2="attribute2 value"]CSV content[/chartjs] Here's the list of supported attributes: backgroundColors (string): list of custom background colors (separated by comma) to use for datasets. For example, if there are 3 datasets (d1, d2 and d3) and we want d1 to use the color #0000FF, d2 to use #FFFF00 and d3 to use #008000, the value of the attribute must be #0000FF,#FFFF00,#008000. If some colors are missing (ex.: #0000FF,,#008000), default colors from the theme (set with the attribute theme) are used as fallback (#0000FF,second theme color,#008000); default is no custom colors used barThickness (int): thickness (in pixels) of a bar in bar charts; default is the default Chart.js thickness beginYAxisAt0 (bool): make sure the Y axis begins at 0; default is false borderColors (string): list of custom border colors (separated by comma) to use for datasets. See the description of the attribute backgroundColors for more details; default is the value of the attribute backgroundColors class (string): class or classes to be added to the chart container; default is an empty string fill (bool): fill the area under the line; default is false height (int): chart height (in pixels); default is the default Chart.js height indexAxis (string): axis to use as index; choices are x, y; note that y is automatically used for horizontal bar charts; default is x max (float): maximum value for Y axes; default is no maximum value opacity (float): opacity to apply to the lines or bars; it must be between 0 and 1; default is 0.8 showLine (bool): show (draw) lines; default is true stacked (bool): enable stacking for line/bar charts; default is false tension (float): add Bezier curve tension to lines; when set to 0, lines are straight; default is 0 theme (string): theme used for the chart colors; choices are Chart, Gutenberg, Rainbow, Tertiary, Visualizer, Wordpress; default is Chart time (bool): add support for time line on the X axis; default is false timeUnit (string): time unit to use if time line is enabled; choices are year, quarter, month, week, day, hour, minute, second, millisecond; default is hour type (string): type of chart; choices are bar, horizontalbar, line, pie; default is line yAxes (string): list of Y axes to which the datasets are bound. It allows to enable multi-axis charts. For example, if there are 3 datasets (d1, d2 and d3) and we want d1 to use the first Y axis, and d2 and d3 to use the second Y axis, the attribute value must be y,y1,y1; default is an empty string, so multi-axis feature is disabled and all datasets are automatically bound to the first (and only) Y axis y Here's a fully functional example: [chartjs backgroundColors="#008000" fill="true" opacity="0.35" tension="0.2" theme="Visualizer" time="true" timeUnit="month" yAxes="y,y1"]Year,Sales,Expenses 2020-08,5421.32,1151.21 2021-02,4823.99,887.23 2021-03,4945.32,958.00 2021-10,7086.65,1854.35 2022-05,7385.21,2009.01 [/chartjs] Here's the result:
The following filter hooks are available: sb_chart_block_content: filter allowing to manipulate the content before it's processed sb_chart_block_options: filter allowing to add custom Chart.js options For example, to customize the legend, use the sb_chart_block_options filter in your functions.php theme file as follows: `php function customize_legend($options, $atts, $series) { $custom_options = to_array($options); $custom_options['plugins']['legend']['labels']['font']['size'] = 16; $custom_options['plugins']['legend']['labels']['color'] = '#0000FF'; return json_decode(json_encode($custom_options)); } add_filter('sb_chart_block_options', 'customize_legend', 10, 3); function to_array($data) { $array = []; if (is_array($data) || is_object($data)) { foreach ($data as $key => $value) { $array[$key] = (is_array($value) || is_object($value)) ? to_array($value) : $value; } } else { $array[] = $data; } return $array; } ` Here's another way (without array conversion): `php function customize_legend($options, $atts, $series) { if (!isset($options->plugins)) $options->plugins = new stdClass(); if (!isset($options->plugins->legend)) $options->plugins->legend = new stdClass(); if (!isset($options->plugins->legend->labels)) $options->plugins->legend->labels = new stdClass(); if (!isset($options->plugins->legend->labels->font)) $options->plugins->legend->labels->font = new stdClass(); $options->plugins->legend->labels->font->size = 16; $options->plugins->legend->labels->color = '#0000FF'; return $options; } add_filter('sb_chart_block_options', 'customize_legend', 10, 3); `