classicDark
Previous
classic
Next
event
Loading...
经典暗黑主题。
import { Chart } from '@antv/g2';const chart = new Chart({container: 'container',paddingLeft: 80,theme: 'classicDark',});chart.interval().data({type: 'fetch',value:'https://gw.alipayobjects.com/os/bmw-prod/f129b517-158d-41a9-83a3-3294d639b39e.csv',format: 'csv',}).transform({ type: 'sortX', by: 'y', reverse: true, slice: 6 }).transform({ type: 'dodgeX' }).encode('x', 'state').encode('y', 'population').encode('color', 'age').axis('y', { labelFormatter: '~s' }).axis('x', { zIndex: 1 });chart.interaction('tooltip', { shared: true }).interaction('elementHighlight', { background: true });chart.render();