-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
151 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
import { Chart } from '@antv/g2'; | ||
|
||
const data = [ | ||
{ name: 'London', 月份: 'Jan.', 月均降雨量: 18.9 }, | ||
{ name: 'London', 月份: 'Feb.', 月均降雨量: 28.8 }, | ||
{ name: 'London', 月份: 'Mar.', 月均降雨量: 39.3 }, | ||
{ name: 'London', 月份: 'Apr.', 月均降雨量: 81.4 }, | ||
{ name: 'London', 月份: 'May', 月均降雨量: 47 }, | ||
{ name: 'London', 月份: 'Jun.', 月均降雨量: 20.3 }, | ||
{ name: 'London', 月份: 'Jul.', 月均降雨量: 24 }, | ||
{ name: 'London', 月份: 'Aug.', 月均降雨量: 35.6 }, | ||
{ name: 'Berlin', 月份: 'Jan.', 月均降雨量: 12.4 }, | ||
{ name: 'Berlin', 月份: 'Feb.', 月均降雨量: 23.2 }, | ||
{ name: 'Berlin', 月份: 'Mar.', 月均降雨量: 34.5 }, | ||
{ name: 'Berlin', 月份: 'Apr.', 月均降雨量: 99.7 }, | ||
{ name: 'Berlin', 月份: 'May', 月均降雨量: 52.6 }, | ||
{ name: 'Berlin', 月份: 'Jun.', 月均降雨量: 35.5 }, | ||
{ name: 'Berlin', 月份: 'Jul.', 月均降雨量: 37.4 }, | ||
{ name: 'Berlin', 月份: 'Aug.', 月均降雨量: 42.4 }, | ||
]; | ||
|
||
const chart = new Chart({ | ||
container: 'container', | ||
autoFit: true, | ||
}); | ||
|
||
chart | ||
.interval() | ||
.data(data) | ||
.encode('x', '月份') | ||
.encode('y', '月均降雨量') | ||
.encode('color', 'name') | ||
.transform({ type: 'dodgeX' }) | ||
.interaction('elementHighlight', { background: true }); | ||
|
||
chart.render(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
import { Chart } from '@antv/g2'; | ||
|
||
const data = [ | ||
{ name: 'London', 月份: 'Jan.', 月均降雨量: 18.9 }, | ||
{ name: 'London', 月份: 'Feb.', 月均降雨量: 28.8 }, | ||
{ name: 'London', 月份: 'Mar.', 月均降雨量: 39.3 }, | ||
{ name: 'London', 月份: 'Apr.', 月均降雨量: 81.4 }, | ||
{ name: 'London', 月份: 'May', 月均降雨量: 47 }, | ||
{ name: 'London', 月份: 'Jun.', 月均降雨量: 20.3 }, | ||
{ name: 'London', 月份: 'Jul.', 月均降雨量: 24 }, | ||
{ name: 'London', 月份: 'Aug.', 月均降雨量: 35.6 }, | ||
{ name: 'Berlin', 月份: 'Jan.', 月均降雨量: 12.4 }, | ||
{ name: 'Berlin', 月份: 'Feb.', 月均降雨量: 23.2 }, | ||
{ name: 'Berlin', 月份: 'Mar.', 月均降雨量: 34.5 }, | ||
{ name: 'Berlin', 月份: 'Apr.', 月均降雨量: 99.7 }, | ||
{ name: 'Berlin', 月份: 'May', 月均降雨量: 52.6 }, | ||
{ name: 'Berlin', 月份: 'Jun.', 月均降雨量: 35.5 }, | ||
{ name: 'Berlin', 月份: 'Jul.', 月均降雨量: 37.4 }, | ||
{ name: 'Berlin', 月份: 'Aug.', 月均降雨量: 42.4 }, | ||
]; | ||
|
||
const chart = new Chart({ | ||
container: 'container', | ||
autoFit: true, | ||
}); | ||
|
||
chart | ||
.interval() | ||
.data(data) | ||
.encode('x', '月份') | ||
.encode('y', '月均降雨量') | ||
.encode('color', 'name') | ||
.transform({ type: 'stackY' }) | ||
.interaction('elementHighlight', { background: true }); | ||
|
||
chart.render(); |
26 changes: 26 additions & 0 deletions
26
site/examples/general/interval/demo/bar-basic-transposed.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import { Chart } from '@antv/g2'; | ||
|
||
const data = [ | ||
{ year: '1951 年', sales: 38 }, | ||
{ year: '1952 年', sales: 52 }, | ||
{ year: '1956 年', sales: 61 }, | ||
{ year: '1957 年', sales: 145 }, | ||
{ year: '1958 年', sales: 48 }, | ||
{ year: '1959 年', sales: 38 }, | ||
{ year: '1960 年', sales: 38 }, | ||
{ year: '1962 年', sales: 38 }, | ||
]; | ||
|
||
const chart = new Chart({ | ||
container: 'container', | ||
autoFit: true, | ||
}); | ||
|
||
chart | ||
.interval() | ||
.coordinate({ transform: [{ type: 'transpose' }] }) | ||
.data(data) | ||
.encode('x', 'year') | ||
.encode('y', 'sales'); | ||
|
||
chart.render(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import { Chart } from '@antv/g2'; | ||
|
||
const data = [ | ||
{ year: '1951 年', sales: 38 }, | ||
{ year: '1952 年', sales: 52 }, | ||
{ year: '1956 年', sales: 61 }, | ||
{ year: '1957 年', sales: 145 }, | ||
{ year: '1958 年', sales: 48 }, | ||
{ year: '1959 年', sales: 38 }, | ||
{ year: '1960 年', sales: 38 }, | ||
{ year: '1962 年', sales: 38 }, | ||
]; | ||
|
||
const chart = new Chart({ | ||
container: 'container', | ||
autoFit: true, | ||
}); | ||
|
||
chart.interval().data(data).encode('x', 'year').encode('y', 'sales'); | ||
|
||
chart.render(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters