# File temp/Graph/Pie.rb, line 302
      def round val, to
        up = 10**to.to_f
        (val * up).to_i / up
      end