Graph 7 icon

Graph 7 is a Google Material Symbol from the Business category. It comes in outlined, rounded and sharp styles, filled or unfilled, at seven weights from 100 to 700. Download it as SVG or PNG, or copy code for HTML, React, Vue, Angular, Flutter and Android — it's free to use under the Apache License 2.0.

Outlined

SVG

Outlined, filled

SVG

Every style, fill and weight

Material Symbols are variable: each icon comes in three styles, with or without fill, at seven weights. Pick a combination to preview it, download it, or copy the code for your platform.

Outlined, unfilled, weight 400

graph_7_outlined_fill0_wght400.svg

Graph 7 icon in HTML

Load the Material Symbols font from Google Fonts (this link loads just this icon), then use the icon's name as text.

<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200&icon_names=graph_7" />

<span class="material-symbols-outlined">graph_7</span>

Graph 7 icon in React

// With the font from the HTML tab:
export function Graph7Icon() {
  return (
    <span className="material-symbols-outlined">
      graph_7
    </span>
  );
}

// Or as an SVG component (Vite + vite-plugin-svgr) instead:
//   npm install @material-symbols/svg-400
//   import Graph7Icon from "@material-symbols/svg-400/outlined/graph_7.svg?react";

Graph 7 icon in Vue

<!-- With the font from the HTML tab -->
<template>
  <span class="material-symbols-outlined">graph_7</span>
</template>

<!-- Or as an SVG component (Vite + vite-svg-loader):
     npm install @material-symbols/svg-400
     import Graph7Icon from "@material-symbols/svg-400/outlined/graph_7.svg?component"; -->

Graph 7 icon in Angular

With Angular Material and the font from the HTML tab:

<mat-icon fontSet="material-symbols-outlined">graph_7</mat-icon>

Graph 7 icon in Flutter

Uses the community material_symbols_icons package.

flutter pub add material_symbols_icons

import 'package:material_symbols_icons/symbols.dart';

Icon(Symbols.graph_7, fill: 0, weight: 400)

Graph 7 icon in Android

A vector drawable of the selected style, fill and weight:

<!-- res/drawable/graph_7.xml -->
<vector xmlns:android="http://schemas.android.com/apk/res/android"
    android:width="24dp"
    android:height="24dp"
    android:viewportWidth="24"
    android:viewportHeight="24"
    android:tint="?attr/colorControlNormal">
        <path android:fillColor="@android:color/white" android:pathData="M11.988 23q-1.161 0-1.975-.817Q9.2 21.367 9.2 20.2q0-.386 .088-.73T9.55 18.825L5.175 14.45q-.3 .175-.649 .263Q4.176 14.8 3.8 14.8q-1.176 0-1.988-.818Q1 13.163 1 11.994 1 10.825 1.812 10.013 2.624 9.2 3.8 9.2q.95 0 1.688 .588T6.475 11.25h2.825q.2-.7 .713-1.212T11.25 9.325v-2.825q-.875-.25-1.462-.987T9.2 3.8q0-1.167 .819-1.983Q10.837 1 12.006 1q1.169 0 1.982 .817Q14.8 2.633 14.8 3.8q0 .376-.1 .726Q14.6 4.875 14.425 5.175l4.4 4.4q.3-.175 .649-.275 .35-.1 .726-.1 1.167 0 1.983 .819Q23 10.837 23 12.006q0 1.169-.817 1.982Q21.367 14.8 20.2 14.8q-.975 0-1.712-.587T17.5 12.75H14.675q-.2 .725-.712 1.238T12.75 14.7v2.8q.875 .25 1.463 1.002T14.8 20.2q0 1.167-.825 1.983Q13.15 23 11.988 23ZM11.25 17.5v-2.791Q10.9 14.6 10.588 14.425q-.313-.175-.575-.437t-.438-.575q-.175-.313-.284-.663H6.475q-.025 .075-.056 .15l-.063 .15q-.031 .075-.056 .15t-.075 .15l.8 .8q.65 .65 1.4 1.413t1.4 1.412l.8 .8q.075-.05 .15-.087l.15-.075q.075-.038 .163-.063t.162-.05Zm3.425-6.25h2.825q.025-.075 .05-.162t.063-.163q.037-.075 .087-.15t.075-.15l-.8-.8-1.4-1.4-1.4-1.4-.8-.8q-.075 .025-.15 .075t-.15 .088q-.075 .037-.162 .062t-.163 .05v2.825q.35 .1 .663 .275t.562 .425q.25 .25 .425 .563t.275 .662Zm5.525 2.05q.525 0 .913-.373t.387-.925Q21.5 11.45 21.113 11.075t-.925-.375q-.538 0-.913 .373t-.375 .925Q18.9 12.55 19.274 12.925T20.2 13.3Zm-8.202 0Q12.55 13.3 12.925 12.927t.375-.925Q13.3 11.45 12.927 11.075t-.925-.375Q11.45 10.7 11.075 11.073t-.375 .925Q10.7 12.55 11.073 12.925t.925 .375Zm0 8.2Q12.55 21.5 12.925 21.113t.375-.925q0-.538-.373-.913t-.925-.375Q11.45 18.9 11.075 19.274T10.7 20.2q0 .525 .373 .913t.925 .387ZM3.813 13.3q.537 0 .912-.373t.375-.925Q5.1 11.45 4.726 11.075T3.8 10.7q-.525 0-.912 .373t-.388 .925Q2.5 12.55 2.888 12.925t.925 .375Zm8.185-8.2Q12.55 5.1 12.925 4.726T13.3 3.8q0-.525-.373-.912t-.925-.388Q11.45 2.5 11.075 2.888t-.375 .925q0 .537 .373 .912t.925 .375Z" />
</vector>

Graph 7 icon in SVG

npm install @material-symbols/svg-400

import icon from "@material-symbols/svg-400/outlined/graph_7.svg";

<!-- or load it from a CDN -->
<img src="https://cdn.jsdelivr.net/npm/@material-symbols/[email protected]/outlined/graph_7.svg" width="24" height="24" alt="Graph 7">

Graph 7 icon in Power Apps

Paste into an Image control's Image property. The Copy button copies the full formula with this icon's SVG.

"data:image/svg+xml;utf8, " & EncodeUrl("<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'>…</svg>")

Details

NameGraph 7
Ligaturegraph_7
Code pointU+F346
CategoryBusiness
StylesOutlined, Rounded, Sharp — each unfilled or filled
Weights100, 200, 300, 400, 500, 600, 700
Files@material-symbols/svg-400/outlined/graph_7.svg, graph_7-fill.svg
FlutterSymbols.graph_7
LicenseApache License 2.0 (© Google LLC)

Keywords

businessinformationprogresschartmeasurementdiagramreportconnectanalysistrackingstatisticsanalytics

Related icons