美文网首页大前端
Ant Design Charts 字体大小设置无效

Ant Design Charts 字体大小设置无效

作者: jack钱 | 来源:发表于2022-12-15 11:42 被阅读0次

    配置文字样式 文档
    按照案例配置,并不起作用

    image.png
    设置方式:

    根据右侧文档一层层配置


    image.png
    import React, { useState, useEffect } from 'react';
    import ReactDOM from 'react-dom';
    import { Liquid } from '@ant-design/plots';
    
    const DemoLiquid = () => {
      const config = {
        statistic: {
          content: {
            style: {
              fontSize:10
            }
          }
        },
        percent: 0.25,
        outline: {
          border: 4,
          distance: 8,
        },
        wave: {
          length: 128,
        },
      };
      return <Liquid {...config} />;
    };
    
    ReactDOM.render(<DemoLiquid />, document.getElementById('container'));
    
    

    相关文章

      网友评论

        本文标题:Ant Design Charts 字体大小设置无效

        本文链接:https://www.haomeiwen.com/subject/osakqdtx.html