Hi @norboo!
The label isn’t stored in any way, it’s simply there to help the user when filling out fields. If you really want something like that, then you can use a group field with either a hidden or settable label field:
piklist('field', array(
'type' => 'group',
'field' => 'clothes_width',
'label' => 'Width',
'fields' => array(
array(
'type' => 'text',
'field' => 'value',
'columns' => 12,
'value' => 'N/A',
'attributes'=> array(
'class' => 'text'
)
),
array(
'type' => 'hidden',
'field' => 'label',
'value' => 'Width'
)
)
));
Hope this helps!