這個外掛並未在最新的 3 個 WordPress 主要版本上進行測試。開發者可能不再對這個外掛進行維護或提供技術支援,並可能會與更新版本的 WordPress 產生使用上的相容性問題。

TablePress Extension: Chartist

外掛說明

Using Chartist.js, this TablePress Extension creates a responsive chart based on the data in a TablePress table.

Use

Add the Shortcode [table-chart id=123 /] to a post or page to create a chart from the TablePress table 123.

Optional parameters:

  • Show/hide chart line: showline=true (default: true)
  • Show/hide show chart area: showarea=false (default: false)
  • Set chart y low: low=0 (default: table low)
  • Set chart y high: high=10 (default: table high)
  • Set line with of the donut chart: donut_width=200 (default: false)
  • Enable/disable smooth line: linesmooth=true (default: true)
  • Enable/disable line points: showpoint=true (default: true)
  • Enable/disable horizontal bars: horizontal=true (default: false)
  • Enable/disable stacked bars: stack=true (default: false)
  • Set chart aspect ratio: aspect_ratio=3:4 (default: 3:4) Alternatives: 1, 15:16, 8:9, 5:6, 4:5, 3:4, 2:3, 5:8, 1:1.618, 3:5, 9:16, 8:15, 1:2, 2:5, 3:8, 1:3, or 1:4
  • Select chart type: chart=bar (default: line) Alternatives: line, bar, pie, donut, percent or piepercent (mix of pie and percent).
  • Set label offset: label_offset=100 (default: false)
  • Set chart padding: chart_padding=100 (default: false)
  • Use animations (not available for all chart types): animation=buildup (default: false)

If the “Table Head Row” option is enabled for the table, the Extension will use the head row data for the chart labels.
The other rows will be shown as lines or bars. Pie or percent charts will only use the first data row. Percent charts will ignore the header row.

CSS customizations

If you’d like to overide the default style, you can add a tablepress-chartist-custom.css in wp-content directory. It will be loaded after the Extension’s default CSS file libdist/chartist.min.css.

Example:

/**
 * SVG Shape CSS properties: http://tutorials.jenkov.com/svg/svg-and-css.html#shape-css-properties
 */

/* First line / bar is .ct-series-a, next is .ct-series-b etc. */
.ct-chart .ct-series.ct-series-a .ct-bar,
.ct-chart .ct-series.ct-series-a .ct-line,
.ct-chart .ct-series.ct-series-a .ct-point  {
    stroke: #073DA0;
}

.ct-series .ct-line, .ct-chart .ct-bar {
    fill: none;
    stroke-width: 10px;
}

.ct-chart .ct-point {
    stroke-width: 10px;
    stroke-linecap: round;
}

螢幕擷圖

  • [table-chart id=1 /]
  • [table-chart id=1 showarea=true /]
  • [table-chart id=1 showarea=true linesmooth=false /]
  • [table-chart id=1 linesmooth=false showpoint=false /]
  • [table-chart id=1 showarea=true showline=false showpoint=false /]
  • [table-chart id=1 low=0 high=8 /]
  • [table-chart id=1 chart=bar /]
  • [table-chart id=1 chart=pie /]
  • [table-chart id=1 chart=percent /]

安裝方式

Prerequisite (install first): The TablePress plugin

  1. In Plugins->Add New, search for tablepress chartist
  2. Click Install Now
  3. When the plugin is installed, activate it.

使用者評論

2022 年 5 月 24 日
Nice plugin
2022 年 4 月 21 日 2 則留言
Simple and quite flexible way to save needing to import images from Excel or some other solution. Eliminates a complex process if data is updated. Note there is a patch needed, with the code in support section, but I am considering updating for my own use and will share patched version if anyone is interested in avoiding touching code.
閱讀全部 5 則使用者評論

參與者及開發者

以下人員參與了開源軟體〈TablePress Extension: Chartist〉的開發相關工作。

參與者

〈TablePress Extension: Chartist〉外掛目前已有 2 個本地化語言版本。 感謝全部譯者為這個外掛做出的貢獻。

將〈TablePress Extension: Chartist〉外掛本地化為台灣繁體中文版

對開發相關資訊感興趣?

任何人均可瀏覽程式碼、查看 SVN 存放庫,或透過 RSS 訂閱開發記錄

變更記錄

0.10

  • Fixed error when opening the page in the backend. (Thanks to andrewleonard)

0.9

  • Updated chartist.js to 0.11.0

0.8

  • Added support for pie charts with percent labels
  • Added animation for bar charts.
  • Added parameters label_offset, chart_padding and donut_width.

0.7

  • Added support for horizontal bars (horizontal=true)
  • Added support for stacked bars (stack=true)
  • Added simple animation for line charts
  • Merged “Addition of donut chart type #1” by shaharhesse

0.6

Switch to [table-chart] Shortcode.

0.5.1

  • Revert to PHP json_encode().

0.5

  • Breaking change: Simplified optional parameters (removed prefix chartist_), new optional parameters are: showline, showarea, low, high, linesmooth, showpoint and aspect_ratio. See examples in screenshots.
  • Added support for chart=pie and chart=percent.

0.4

  • Added support for bar chart: chartist_chart=bar.

0.3

  • 0.3 Added support for CSS customizations.

0.2

  • Added more optional parameters.

0.1

  • Initial release