ゲージのReactコンポーネント
Framework7にはGaugeコンポーネントが付属しています。見た目の良い、完全にレスポンシブなSVGゲージを生成します。
ゲージコンポーネント
以下のコンポーネントが含まれています。
Gauge
(ゲージ
ゲージのプロパティ
Prop | Type | Default | Description |
---|---|---|---|
id | string | ゲージ要素のID属性 | |
type | string | circle | ゲージのタイプ。circle または semicircle` のいずれかです。 |
value | number | 0 | ゲージの値/パーセンテージ。0 から 1` の間の数値でなければなりません。 |
size | number | 200 | 生成されるSVGイメージのサイズ(px) |
bgColor | string | transparent | ゲージの背景色。例えば、#ff00ff , rgb(0,0,255) などです。 |
borderBgColor | string | #eeeeee | メインフレーム/ストロークの背景色 |
borderColor | string | #000000 | メインフレーム/ストロークの色 |
borderWidth | string | 10 | メインフレーム/ストロークの幅 |
valueText | string | null | ゲージ値テキスト(ゲージ中央の大きなテキスト |
valueTextColor | string | #000000 | 値のテキストの色 |
valueFontSize | string | 31 | 値のテキストのフォントサイズ |
valueFontWeight | string | 500 | 数値テキストのフォントの太さ |
labelText | string | null | ゲージの追加ラベルテキスト |
labelTextColor | string | #888888 | ラベルテキストの色 |
labelFontSize | string | 14 | ラベルのフォントサイズ |
labelFontWeight | string | 400 | ラベルテキストのフォントウェイト |
Examples
import React, { useState } from 'react';
import {
Page,
Navbar,
Block,
Gauge,
Segmented,
Button,
BlockTitle,
Row,
Col,
} from 'framework7-react';
export default () => {
const [gaugeValue, setGaugeValue] = useState(0.5);
return (
<Page>
<Navbar title="Gauge" />
<Block strong>
<p>
Framework7 comes with Gauge component. It produces nice looking fully responsive SVG
gauges.
</p>
</Block>
<Block strong className="text-align-center">
<Gauge
type="circle"
value={gaugeValue}
size={250}
borderColor="#2196f3"
borderWidth={10}
valueText={`${gaugeValue * 100}%`}
valueFontSize={41}
valueTextColor="#2196f3"
labelText="amount of something"
/>
<Segmented tag="p" raised>
<Button active={gaugeValue === 0} onClick={() => setGaugeValue(0)}>
0%
</Button>
<Button active={gaugeValue === 0.25} onClick={() => setGaugeValue(0.25)}>
25%
</Button>
<Button active={gaugeValue === 0.5} onClick={() => setGaugeValue(0.5)}>
50%
</Button>
<Button active={gaugeValue === 0.75} onClick={() => setGaugeValue(0.75)}>
75%
</Button>
<Button active={gaugeValue === 1} onClick={() => setGaugeValue(1)}>
100%
</Button>
</Segmented>
</Block>
<BlockTitle>Circle Gauges</BlockTitle>
<Block strong>
<Row>
<Col className="text-align-center">
<Gauge
type="circle"
value={0.44}
valueText="44%"
valueTextColor="#ff9800"
borderColor="#ff9800"
/>
</Col>
<Col className="text-align-center">
<Gauge
type="circle"
value={0.12}
valueText="$120"
valueTextColor="#4caf50"
borderColor="#4caf50"
labelText="of $1000 budget"
labelTextColor="#f44336"
labelFontWeight={700}
/>
</Col>
</Row>
</Block>
<BlockTitle>Semicircle Gauges</BlockTitle>
<Block strong>
<Row>
<Col className="text-align-center">
<Gauge
type="semicircle"
value={0.3}
valueText="30%"
valueTextColor="#f44336"
borderColor="#f44336"
/>
</Col>
<Col className="text-align-center">
<Gauge
type="semicircle"
value={0.5}
valueText="30kg"
valueTextColor="#e91e63"
borderColor="#e91e63"
labelText="of 60kg total"
labelTextColor="#333"
/>
</Col>
</Row>
</Block>
<BlockTitle>Customization</BlockTitle>
<Block strong>
<Row>
<Col className="text-align-center">
<Gauge
type="circle"
value={0.35}
valueText="35%"
valueTextColor="#4caf50"
valueFontSize={51}
valueFontWeight={700}
borderWidth={20}
borderColor="#4caf50"
borderBgColor="#ffeb3b"
bgColor="#ffeb3b"
/>
</Col>
<Col className="text-align-center">
<Gauge
type="circle"
value={0.67}
valueText="$670"
valueTextColor="#000"
borderColor="#ff9800"
labelText="of $1000 spent"
labelTextColor="#4caf50"
labelFontWeight={800}
labelFontSize={12}
borderWidth={30}
/>
</Col>
</Row>
<br />
<Row>
<Col className="text-align-center">
<Gauge
type="semicircle"
value={0.5}
valueText="50%"
valueTextColor="#ffeb3b"
valueFontSize={41}
valueFontWeight={700}
borderWidth={10}
borderColor="#ffeb3b"
borderBgColor="transparent"
/>
</Col>
<Col className="text-align-center">
<Gauge
type="semicircle"
value={0.77}
borderColor="#ff9800"
labelText="$770 spent so far"
labelTextColor="#ff9800"
labelFontWeight={800}
labelFontSize={12}
borderWidth={10}
/>
</Col>
</Row>
</Block>
</Page>
);
};