classicDark
Previous
classic
Next
overview
Loading...
经典暗黑主题。
import { Column } from '@ant-design/plots';import React from 'react';import { createRoot } from 'react-dom';const Demo = () => {const config ={"theme": "classicDark","axis": {"x": {"zIndex": 1},"y": {"labelFormatter": "~s"}},"colorField": "age","yField": "population","xField": "state","transform": [{"type": "dodgeX"},{"type": "sortX","by": "y","reverse": true,"slice": 6}],"data": {"type": "fetch","value": "https://gw.alipayobjects.com/os/bmw-prod/f129b517-158d-41a9-83a3-3294d639b39e.csv","format": "csv"},"interaction": {"elementHighlight": {"background": true},"tooltip": {"shared": true}}};return <Column {...config} />;};createRoot(document.getElementById('container')).render(<Demo />);