Skip to content

christianoviedo/justgage-yii

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

justgage-yii

About

JustGage for Yii is a widget for gauge javascript library JustGage http://www.justgage.com

Installation

Uncompress in 'protected/extensions'

Usage

To use this widget, you may insert the following code in a view:

     $this->Widget('ext.justgage.JustGage', array(
        'options'=>array(
            'value' => 67, 
            'min' => 0,
            'max' => 100,
            'title' => "Visitors",
        ),
        'htmlOptions'=> array(
            'style'=>'width:200px; height:160px; margin: 0 auto;',
        ),
    ));

You can also use a JSON string:

  $this->Widget('ext.justgage.JustGage', array(
        'options'=>'{
            "value": 67, 
            "min": 0,
            "max": 100,
            "title": "Visitors"
        }',
        'htmlOptions'=> array(
            'style'=>'width:200px; height:160px; margin: 0 auto;',
        ),
  ));

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published