/** @see org.jfree.data.xy.MatrixSeries#zeroAll() */
 public void zeroAll() {
   this.m_totalSum = 0;
   super.zeroAll();
 }
  /** @see org.jfree.data.xy.MatrixSeries#update(int, int, double) */
  public void update(int i, int j, double mij) {
    this.m_totalSum -= get(i, j);
    this.m_totalSum += mij;

    super.update(i, j, mij);
  }