Example #1
0
 public void Open(XmlTextWriter svgWriter, Size pictureSize, SvgOpenParameters extraParameters)
 {
     if (activeRenderingType == RenderingType.Svg)
     {
         svgGraphics = new SvgChartGraphics(((ChartGraphics)this).common);
         svgGraphics.SetTitle(documentTitle);
         svgGraphics.Open(svgWriter, pictureSize, extraParameters);
     }
 }
Example #2
0
 public bool Equals(SvgOpenParameters other)
 {
     if (m_preserveAspectRatio != other.m_preserveAspectRatio)
     {
         return(false);
     }
     if (m_resizable != other.m_resizable)
     {
         return(false);
     }
     if (m_toolTipsEnabled != other.m_toolTipsEnabled)
     {
         return(false);
     }
     return(true);
 }