/// <summary>
        /// Initializes a new instance of the Visifire.Charts.PlotDetails class
        /// </summary>
        public CircularPlotDetails(ChartOrientationType chartOrientation, RenderAs renderAs)
        {
            ChartOrientation = chartOrientation;
            CircularChartType = renderAs;
            ListOfPoints4CircularAxis = new List<Point>();

        }
示例#2
0
        /// <summary>
        ///		Convierte la orientación
        /// </summary>
        private ChartModel.OrientationType ConvertOrientation(ChartOrientationType orientation)
        {
            switch (orientation)
            {
            case ChartOrientationType.Horizontal:
                return(ChartModel.OrientationType.Horizontal);

            default:
                return(ChartModel.OrientationType.Vertical);
            }
        }
示例#3
0
 /// <summary>
 /// Initializes a new instance of the Visifire.Charts.PlotDetails class
 /// </summary>
 public CircularPlotDetails(ChartOrientationType chartOrientation, RenderAs renderAs)
 {
     ChartOrientation = chartOrientation;
     CircularChartType = renderAs;
     ListOfPoints4CircularAxis = new List<Point>();
 }