sig
  type store = {
    file : string;
    title : string;
    descr : string;
    legend : string array;
    mutable points : Nbr.t array list;
  }
  val to_string : ?width:int -> Pp_svg.store -> string
  val to_file : Pp_svg.store -> unit
end