SondagesPro / generateGraphQuestion

Create graph (radar) in your survey

Home Page:https://extensions.sondages.pro

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

generateGraphQuestion

A plugin for LimeSurvey to generate graph from question in question answer of the survey using data URI. The plugin produce radar graph.

Installation

This plugin need PHP7.0 and up.

Via GIT

  • Go to your LimeSurvey Directory
  • Clone in plugins/generateGraphQuestion directory git clone https://git.framasoft.org/SondagePro-LimeSurvey-plugin/generateGraphQuestion.git generateGraphQuestion

Via ZIP dowload

Documentation

  • Activate the plugin
  • Create a long text question type
  • Use the new attribute to set label and value by other question code
    • One question code on each line
    • Label are question text (or sub question value for multiple question)
    • Value are question value
  • The graph title was the question text
  • The graph image was save as question answer in base 64 encoded format.
  • You can use Expression Manager in title or label
  • The construction of the graph is done via PHP : The graph can not be shown in same page of the source.

Some tips

  • You can use Equation question type for the label and value.
  • With Equation question type : you must use the equation setting for the value, question text are used for label.

Show the graph

There is 2 solution to show the graph :

  1. You can show it directly in the question, answer is always hidden. Use [Self.img] if you want to include img with source in the question text or help.
  2. Graph are generated when needed, when the question must be shown even if hidden by the hide attribute. Then you can use directly (if question code are graph) : <img src='{graph.NAOK}' /> to include the graph in the survey.

Adapt the graph

The generated graph have only one option in question setting : the total size of the grap in pixel. You can update all the default setting with a xml file in template upload file directory or survey uploaded files directory.

The plugin read the default settings and, if exist, graphQuestion.xml and graphQuestionRadar.xml file in template directory, you can replace default value here. The plugin look at survey uploaded files to get graphQuestion.xml, graphQuestionRadar.xml and graphQuestionQuestionCode.xml (replaceQuestionCode by the question code of the graph question) and add it in graph configuration.

You can update color, font size and some margin for the graph wrapper and for the header. Font used use included LimeSurvey system to choose the best font for your language, you can set it globally in your config file.

You can update all part of the chart part, see pChart documentation for available settings.

An example of such file

<?xml version="1.0" encoding="UTF-8"?>
<graph>
  <fontsize>12</fontsize>
  <chart>
    <Layout>RADAR_LAYOUT_STAR</Layout>
    <DrawPoly>TRUE</DrawPoly>
    <WriteValues>TRUE</WriteValues>
    <BackgroundGradient>
      <StartR>255</StartR>
      <StartG>255</StartG>
      <StartB>255</StartB>
      <StartAlpha>100</StartAlpha>
      <EndR>207</EndR>
      <EndG>227</EndG>
      <EndB>125</EndB>
      <EndAlpha>50</EndAlpha>
    </BackgroundGradient>
  </chart>
</graph>

Home page & Copyright

Distributed under GNU AFFERO GENERAL PUBLIC LICENSE Version 3 licence

Included Library

About

Create graph (radar) in your survey

https://extensions.sondages.pro

License:GNU Affero General Public License v3.0


Languages

Language:PHP 100.0%