为了账号安全,请及时绑定邮箱和手机立即绑定

如何在 Chartist 中添加绘图标题

如何在 Chartist 中添加绘图标题

临摹微笑 2022-12-22 13:05:07
我使用'react-chartist'。我想添加情节的标题,这对我不起作用:const options = {  title:{    display:true,    text: 'Some name'  }}<ChartistGraph          className='ct-hidden-points-title'          data={data}          options={options}          type='Line'         />
查看完整描述

1 回答

?
12345678_0001

TA贡献1802条经验 获得超5个赞

整个图表似乎没有标题属性。


有一个轴标题插件 ( https://gionkunz.github.io/chartist-js/plugins.html#axis-title-plugin ),但从问题来看,这似乎不是你要找的东西。


如果你只想在图表下方或上方显示一些文本,你可以将它放在那里并textAlign: 'center'为父元素添加样式:


// ...

<div style={{ textAlign: 'center' }}>

  <h1>Chart title</h1>

  <ChartistGraph

    className="ct-hidden-points-title"

    data={data}

    options={options}

    type={type}

  />

</div>

// ...


查看完整回答
反对 回复 2022-12-22
  • 1 回答
  • 0 关注
  • 73 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信