2amigos / yii2-chartjs-widget

ChartJs Widget For Yii2
https://2amigos.us
Other
109 stars 67 forks source link

The chart title could not be displayed #40

Open cirodev opened 5 years ago

cirodev commented 5 years ago

I'm trying to view the chart title by setting the following options

'Legend' => [ 'Display' => false ] 'Title' => [ 'display' => true, 'text' => 'COST OF SERVICES', 'Position' => 'bottom' ]

but it does not work

dpchami commented 4 years ago

I'm facing the same challenge is there anyone resolve this?

tonydspaniard commented 4 years ago

@cirodev and @dpchami mind sharing the entire code? Thanks

cirodev commented 4 years ago

I'm sorry but I don't think I have that project anymore. I hadn't even received the notification that someone had responded.

ariefbayu commented 3 years ago

I have the same issue implementing using the similar codes as op.

Had to implement using clientOptions:

'clientOptions' => [
    'title' => [
      'display' => true,
      'text' => 'Custom Chart Title'
    ]
  ]