/adei/trunk

To get this branch, use:
bzr branch http://darksoft.org/webbzr/adei/trunk

« back to all changes in this revision

Viewing changes to classes/views/scatterview.php

  • Committer: Suren A. Chilingaryan
  • Date: 2012-10-31 20:11:03 UTC
  • Revision ID: csa@dside.dyndns.org-20121031201103-gwzrqhwta2i3i6tz
Histogram view (based on the code by Hovhannes)

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 }
21
21
 
22
22
 function GetOption($opt, $default = false) {
23
 
    if ($opts[$opt]) return $opts[$opt];
 
23
    if (isset($this->options[$opt])) return $this->options[$opt];
24
24
    return $default;
25
25
 }
26
26