当前位置: 代码迷 >> Java Web开发 >> ExtJs4 Chart字体设置有关问题
  详细解决方案

ExtJs4 Chart字体设置有关问题

热度:7857   发布时间:2016-04-10 23:34:30.0
ExtJs4 Chart字体设置问题
我现在用ExtJs4  做一个ColumnChart   想让柱子上面的字体变成粗体   怎么办啊?哪位大神可以帮帮忙 急求???
ExtJs

------解决方案--------------------
<style type="text/css">
  .bc-tenant textarea {
    font-weight: bold;
}
    </style>

然后
new Ext.FormPanel({
                height: 100,
                renderTo: Ext.getBody(),
                items: [{
                    xtype: 'textarea',
                    fieldLabel: 'Name',
                    itemCls: 'bc-tenant'
                }]
            });
  相关解决方案