日期:2014-05-17  浏览次数:20716 次

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'
                }]
            });