Vertical and Horizontal Line to geraldo report

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
class VLine(Line):
    def __getattribute__(self, name):
        if name == 'right':
            return self.left
        return super(VLine, self).__getattribute__(name)


class HLine(Line):
    def __getattribute__(self, name):
        if name == 'bottom':
            return self.top
        return super(HLine, self).__getattribute__(name)

More like this

  1. Unit Test Profiling by justquick 3 years ago
  2. Allow editing of the selected object of the filter_vertical/filter_horizontal widget with jquery by jpic 3 years, 4 months ago
  3. Widget for DateTime values on Geraldo Reports by marinho 2 years, 9 months ago
  4. Widget for Money values on Geraldo Reports by marinho 2 years, 9 months ago
  5. Anticollate? Disinterleave? by lemonlaug 2 years ago

Comments

(Forgotten your password?)