【Microsoft Lists】ドーナツグラフを表示する

f:id:tecchan365:20210816082658p:plain

上図のように、数値列(パーセント表示)の見た目を、ドーナツ円グラフに変える書式設定のサンプルを作成してみました。

以下に作成した書式設定の JSON を掲載しておきます。利用する場合は、数値列(パーセント表示) の書式設定に、掲載されている JSON をコピー & ペーストしてください。

f:id:tecchan365:20210816083359p:plain

アイコン+パーセントを表示するバージョン

f:id:tecchan365:20210816083654p:plain

{
  "$schema": "https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json",
  "elmType": "div",
  "style": {
    "position": "relative",
    "margin": "10px",
    "width": "75px",
    "height": "75px"
  },
  "children": [
    {
      "elmType": "svg",
      "style": {
        "fill": "currentColor",
        "position": "absolute",
        "top": "0",
        "right": "0"
      },
      "attributes": {
        "viewBox": "0 0 600 600",
        "class": "ms-fontColor-neutralQuaternaryAlt"
      },
      "children": [
        {
          "elmType": "path",
          "attributes": {
            "d": "M300,0 A300,300 0 1,1 299.998407846124,4.2249439502484165e-9 L299.99880588459297,75.00000000316868 A225,225 0 1,0 300,75 Z"
          }
        }
      ]
    },
    {
      "elmType": "svg",
      "style": {
        "fill": "currentColor",
        "position": "absolute",
        "top": "0",
        "right": "0"
      },
      "attributes": {
        "viewBox": "0 0 600 600",
        "class": "ms-fontColor-themePrimary"
      },
      "children": [
        {
          "elmType": "path",
          "attributes": {
            "d": "= 'M300,0 A300,300 0 ' + if( @currentField > 0.5 , '1,1 ' , '0,1 ') + (300 + 300 * sin(360 * @currentField * (3.14159 / 180))) + ',' + (300 - 300 * cos(360 * @currentField * (3.14159 / 180))) + ' L' + (300 + 225 * sin(360 * @currentField * (3.14159 / 180))) + ',' + (300 - 225 * cos(360 * @currentField * (3.14159 / 180))) + ' A225,225 0 ' + if( @currentField > 0.5 , '1,0 ' , '0,0 ') + ' 300,75 Z'"
          }
        }
      ]
    },
    {
      "elmType": "div",
      "style": {
        "position": "absolute",
        "width": "100%",
        "height": "100%",
        "display": "flex",
        "flex-direction": "column",
        "justify-content": "center",
        "align-items": "center"
      },
      "attributes": {
        "class": "ms-fontColor-themePrimary"
      },
      "children": [
        {
          "elmType": "div",
          "style": {
            "font-size": "18px",
            "margin-bottom": "2px"
          },
          "attributes": {
            "iconName": "SkypeCircleCheck"
          }
        },
        {
          "elmType": "div",
          "style": {
            "width": "70%",
            "text-align": "center",
            "font-size": "12px",
            "font-weight": "bold"
          },
          "txtContent": "@currentField.displayValue"
        }
      ]
    }
  ]
} 

※アイコンを変更したい場合は、75 行目の "iconName" の値を、任意の Fluent UI Icon のアイコン名 に変更ください。

f:id:tecchan365:20210816084047p:plain

パーセント表示のみ

f:id:tecchan365:20210816084504p:plain

{
  "$schema": "https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json",
  "elmType": "div",
  "style": {
    "position": "relative",
    "margin": "10px",
    "width": "75px",
    "height": "75px"
  },
  "children": [
    {
      "elmType": "svg",
      "style": {
        "fill": "currentColor",
        "position": "absolute",
        "top": "0",
        "right": "0"
      },
      "attributes": {
        "viewBox": "0 0 600 600",
        "class": "ms-fontColor-neutralQuaternaryAlt"
      },
      "children": [
        {
          "elmType": "path",
          "attributes": {
            "d": "M300,0 A300,300 0 1,1 299.998407846124,4.2249439502484165e-9 L299.99880588459297,75.00000000316868 A225,225 0 1,0 300,75 Z"
          }
        }
      ]
    },
    {
      "elmType": "svg",
      "style": {
        "fill": "currentColor",
        "position": "absolute",
        "top": "0",
        "right": "0"
      },
      "attributes": {
        "viewBox": "0 0 600 600",
        "class": "ms-fontColor-themePrimary"
      },
      "children": [
        {
          "elmType": "path",
          "attributes": {
            "d": "= 'M300,0 A300,300 0 ' + if( @currentField > 0.5 , '1,1 ' , '0,1 ') + (300 + 300 * sin(360 * @currentField * (3.14159 / 180))) + ',' + (300 - 300 * cos(360 * @currentField * (3.14159 / 180))) + ' L' + (300 + 225 * sin(360 * @currentField * (3.14159 / 180))) + ',' + (300 - 225 * cos(360 * @currentField * (3.14159 / 180))) + ' A225,225 0 ' + if( @currentField > 0.5 , '1,0 ' , '0,0 ') + ' 300,75 Z'"
          }
        }
      ]
    },
    {
      "elmType": "div",
      "style": {
        "position": "absolute",
        "width": "100%",
        "height": "100%",
        "display": "flex",
        "flex-direction": "column",
        "justify-content": "center",
        "align-items": "center"
      },
      "attributes": {
        "class": "ms-fontColor-themePrimary"
      },
      "children": [
        {
          "elmType": "div",
          "style": {
            "width": "70%",
            "text-align": "center",
            "font-size": "15px",
            "font-weight": "bold"
          },
          "txtContent": "@currentField.displayValue"
        }
      ]
    }
  ]
} 

アイコン表示のみ(マウスホバーでパーセント表示)

f:id:tecchan365:20210816084605p:plain

{
  "$schema": "https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json",
  "elmType": "div",
  "style": {
    "position": "relative",
    "margin": "10px",
    "width": "75px",
    "height": "75px"
  },
  "children": [
    {
      "elmType": "svg",
      "style": {
        "fill": "currentColor",
        "position": "absolute",
        "top": "0",
        "right": "0"
      },
      "attributes": {
        "viewBox": "0 0 600 600",
        "class": "ms-fontColor-neutralQuaternaryAlt"
      },
      "children": [
        {
          "elmType": "path",
          "attributes": {
            "d": "M300,0 A300,300 0 1,1 299.998407846124,4.2249439502484165e-9 L299.99880588459297,75.00000000316868 A225,225 0 1,0 300,75 Z"
          }
        }
      ]
    },
    {
      "elmType": "svg",
      "style": {
        "fill": "currentColor",
        "position": "absolute",
        "top": "0",
        "right": "0"
      },
      "attributes": {
        "viewBox": "0 0 600 600",
        "class": "ms-fontColor-themePrimary"
      },
      "children": [
        {
          "elmType": "path",
          "attributes": {
            "d": "= 'M300,0 A300,300 0 ' + if( @currentField > 0.5 , '1,1 ' , '0,1 ') + (300 + 300 * sin(360 * @currentField * (3.14159 / 180))) + ',' + (300 - 300 * cos(360 * @currentField * (3.14159 / 180))) + ' L' + (300 + 225 * sin(360 * @currentField * (3.14159 / 180))) + ',' + (300 - 225 * cos(360 * @currentField * (3.14159 / 180))) + ' A225,225 0 ' + if( @currentField > 0.5 , '1,0 ' , '0,0 ') + ' 300,75 Z'"
          }
        }
      ]
    },
    {
      "elmType": "div",
      "style": {
        "position": "absolute",
        "width": "100%",
        "height": "100%",
        "display": "flex",
        "flex-direction": "column",
        "justify-content": "center",
        "align-items": "center",
        "cursor": "pointer"
      },
      "attributes": {
        "class": "ms-fontColor-themePrimary"
      },
      "customCardProps": {
        "directionalHint": "rightCenter",
        "isBeakVisible": true,
        "openOnEvent": "hover",
        "formatter": {
          "elmType": "div",
          "style": {
            "padding": "15px"
          },
          "children": [
            {
              "elmType": "div",
              "style": {
                "font-size": "25px",
                "font-weight": "bold"
              },
              "txtContent": "@currentField.displayValue",
              "attributes": {
                "class": "ms-fontColor-themePrimary"
              }
            }
          ]
        }
      },
      "children": [
        {
          "elmType": "div",
          "style": {
            "font-size": "30px"
          },
          "attributes": {
            "iconName": "HeartFill"
          }
        }
      ]
    }
  ]
}

※アイコンを変更したい場合は、99 行目の "iconName" の値を、任意の Fluent UI Icon のアイコン名 に変更ください。

f:id:tecchan365:20210816084810p:plain