public GraphRenderBase(ConfigurationPlot config, GraphAxis gx, GraphAxis gy, GraphPlotStyle style)
 {
     m_config = config;
     m_gx     = gx;
     m_gy     = gy;
     m_style  = style;
 }
Example #2
0
 public GraphRenderBB(ConfigurationPlot config, GraphAxis gx, GraphAxis gy, GraphPlotStyle style)
     : base(config, gx, gy, style)
 {
     m_rgpt[0] = new PointF();
     m_rgpt[1] = new PointF();
     m_rgpt[2] = new PointF();
     m_rgpt[3] = new PointF();
     m_rgpt[4] = new PointF();
 }
Example #3
0
 public GraphRenderRSI(ConfigurationPlot config, GraphAxis gx, GraphAxis gy, GraphPlotStyle style)
     : base(config, gx, gy, style)
 {
 }
Example #4
0
        public GraphRenderZones(ConfigurationPlot config, GraphAxis gx, GraphAxis gy, GraphPlotStyle style)
            : base(config, gx, gy, style)
        {
            if (config.ExtraSettings.ContainsKey("Resolution"))
            {
                m_nResolution = (int)config.ExtraSettings["Resolution"];
            }

            if (config.ExtraSettings.ContainsKey("EnableVolumeScale"))
            {
                m_bEnableVolumeScale = (config.ExtraSettings["EnableVolumeScale"] != 0) ? true : false;
            }

            if (config.ExtraSettings.ContainsKey("Width"))
            {
                m_nWidth = (int)config.ExtraSettings["Width"];
            }
        }
 public GraphRenderLineFill(ConfigurationPlot config, GraphAxis gx, GraphAxis gy, GraphPlotStyle style)
     : base(config, gx, gy, style)
 {
     m_rgpts5[0] = new PointF();
     m_rgpts5[1] = new PointF();
     m_rgpts5[2] = new PointF();
     m_rgpts5[3] = new PointF();
     m_rgpts5[4] = new PointF();
     m_rgpts4[0] = new PointF();
     m_rgpts4[1] = new PointF();
     m_rgpts4[2] = new PointF();
     m_rgpts4[3] = new PointF();
 }
Example #6
0
        public GraphRenderHighLow(ConfigurationPlot config, GraphAxis gx, GraphAxis gy, GraphPlotStyle style)
            : base(config, gx, gy, style)
        {
            if (config.ExtraSettings != null && config.ExtraSettings.ContainsKey("DrawLines"))
            {
                if (config.ExtraSettings["DrawLines"] != 0)
                {
                    m_bDrawLines = true;
                }
            }

            m_rgpt[0] = new PointF();
            m_rgpt[1] = new PointF();
            m_rgpt[2] = new PointF();
            m_rgpt[3] = new PointF();
            m_rgpt[4] = new PointF();
        }