This widget makes it easy to render charts and graphs within your web application by utilising the visualize jQuery plugin as found here: http://code.google.com/p/dwpe/
protected/extensions$this->widget('application.extensions.cvisualizewidget.CVisualizeWidget',array(
'data'=>array(
'headings'=>array(
'January',
'February',
'March',
'April',
'May',
'June',
'July',
'August',
'September',
'October',
'November',
'December'
),
'data'=>array(
'Hits' => array(4,8,25,56,23,78),
'Visits' => array(2,6,3,14,56,78),
'Downloads'=>array(12,4,15,99,4.99)
)
),
'options' => array(
'title'=>'Sample Data',
'width'=>950,
'height'=>250
)
));
For full information about the options included with this widget, please visit the project home page
View Example charts
Total 2 comments
Yes, very nice.
Although, the css that the widget uses changes global styles, such as font-size. Easy fix though.
Very nice and easy to use! Tnx
Leave a comment
Please login to leave your comment.