Skip to content
This repository has been archived by the owner on Apr 15, 2020. It is now read-only.

ExtensionEngineArchive/xblock_charting

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 

Repository files navigation

Pie Chart edX XBlock - NVD3

This XBlock allows students to visualize data on a pie chart and interact with it. You can easily integrate the XBlock into Open edX and start to use the pie chart.

Installation instructions

In order to install the XBlock into your Open edX devstack Server you need to:

  1. Download the XBlock from github. Place the files inside your server.

  2. Install your block: You must replace /path/to/your/block with the path where you have downloaded the XBlock

    $ vagrant ssh vagrant@precise64:~$ sudo -u edxapp /edx/bin/pip.edxapp install /path/to/your/block

  3. Enable the block:

    #. In edx-platform/lms/envs/common.py, uncomment::

       # from xmodule.x_module import prefer_xmodules
       # XBLOCK_SELECT_FUNCTION = prefer_xmodules
    

    #. In edx-platform/cms/envs/common.py, uncomment::

       # from xmodule.x_module import prefer_xmodules
       # XBLOCK_SELECT_FUNCTION = prefer_xmodules
    

    #. In edx-platform/cms/envs/common.py, change::

       'ALLOW_ALL_ADVANCED_COMPONENTS': False,
    
       to::
    
       'ALLOW_ALL_ADVANCED_COMPONENTS': True
    
  4. Add the block to your courses' advanced settings in Studio:

    #. Log in to Studio, and open your course #. Settings -> Advanced Settings #. Change the value for the key "advanced_modules" to piechart

Using the XBlock in the course

In the Studio go to:

Settings->Advanced Settings

Add a piechart policy key on the advanced_modules keys

Policy key added

After that, a new button called Advanced will appear in your unit edit view

Advanced

Add a new option called Pie Chart, which will add the component with the default pie chart to the course.

Adding pie chart

You can change the parameters of the pie chart by pressing the edit button.

Display pie chart

Right now you can change:

1. Title of the XBlock
2. Width and Height of the XBlock
3. Start and End angle of the Pie Chart
4. Whether labels will be shown or not
5. Label threshold
6. Label type (whether percent, group name or group value will be displayed)
7. Whether the pie chart is donut or not
8. Number of available groups of data
9. Group name and value for each group of data

Editing pie chart

Student interaction with the XBlock:

1. Legend:    click one -> show/hide group of data
              double click -> hide every group of data except the one that was clicked
2. Pie Chart: hover over -> shows the label with group name and value over the group

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published