Welcome here !


Take a look at our Guides on a variety of topics - with new content to be added this year !

Mini Guides

or one of the older projects

Software

Electronics

3D Printing


EChart Examples With Code


A Pie Chart (interactive) - click below to see the code

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
```echarts
{
  "title": {
    "text": "Interactive Weekly Activity Distribution",
    "left": "center"
  },
  "tooltip": {
    "trigger": "item"
  },
  "legend": {
    "orient": "vertical",
    "left": "left"
  },
  "series": [
    {
      "name": "Activity",
      "type": "pie",
      "radius": "50%",
      "selectedMode": "single",
      "data": [
        { "value": 150, "name": "Mon" },
        { "value": 230, "name": "Tue" },
        { "value": 224, "name": "Wed" },
        { "value": 218, "name": "Thu" },
        { "value": 135, "name": "Fri" },
        { "value": 147, "name": "Sat" },
        { "value": 260, "name": "Sun" }
      ],
      "emphasis": {
        "itemStyle": {
          "shadowBlur": 10,
          "shadowOffsetX": 0,
          "shadowColor": "rgba(0, 0, 0, 0.5)"
        }
      }
    }
  ]
}

A Line Chart (interactive) - click below to see the code

0%