Other articles


  1. a post with echarts

    This is an example post with some echarts code.

    ```echarts
    {
      "title": {
        "text": "ECharts Getting Started Example"
      },
      "responsive": true,
      "tooltip": {},
      "legend": {
        "top": "30px",
        "data": ["sales"]
      },
      "xAxis": {
        "data": ["Shirts", "Cardigans", "Chiffons", "Pants", "Heels", "Socks"]
      },
      "yAxis": {},
      "series": [
        {
          "name": "sales",
          "type": "bar",
          "data": [5, 20, 36, 10, 10, 20]
        }
      ]
    }
    ```
    

    Which generates:

    {
      "title": {
        "text": "ECharts …
    read more
  2. a post with chart.js

    This is an example post with some chart.js code.

    ```chartjs
    {
      "type": "line",
      "data": {
        "labels": [
          "January",
          "February",
          "March",
          "April",
          "May",
          "June",
          "July"
        ],
        "datasets": [
          {
            "label": "# of bugs",
            "fill": false,
            "lineTension": 0.1,
            "backgroundColor": "rgba(75,192,192,0.4)",
            "borderColor": "rgba(75,192,192,1)",
            "borderCapStyle": "butt",
            "borderDash": [],
            "borderDashOffset": 0,
            "borderJoinStyle …
    read more

links

social