1 write to logarithmBase
System.Windows.Forms.DataVisualization (1)
Common\General\AxisScale.cs (1)
782 logarithmBase = value;
44 references to logarithmBase
System.Windows.Forms.DataVisualization (44)
Common\Annotation\AnnotationBase.cs (8)
2976 newX = Math.Pow( horizAxis.logarithmBase, newX ); 2979 newAnchorX = Math.Pow( horizAxis.logarithmBase, newAnchorX ); 2992 newRight = Math.Pow( horizAxis.logarithmBase, newRight ); 3001 newRight = Math.Pow( horizAxis.logarithmBase, newRight ); 3019 newY = Math.Pow( vertAxis.logarithmBase, newY ); 3022 newAnchorY = Math.Pow( vertAxis.logarithmBase, newAnchorY ); 3035 newBottom = Math.Pow( vertAxis.logarithmBase, newBottom ); 3044 newBottom = Math.Pow( vertAxis.logarithmBase, newBottom );
Common\ChartTypes\BarChart.cs (2)
436 area.GetPointsInterval( typeSeries, vAxis.IsLogarithmic, vAxis.logarithmBase, true, out sameInterval ); 450 interval = area.GetPointsInterval( typeSeries, vAxis.IsLogarithmic, vAxis.logarithmBase, true, out sameInterval );
Common\ChartTypes\BoxPlotChart.cs (2)
276 double interval = (indexedSeries) ? 1 : area.GetPointsInterval( hAxis.IsLogarithmic, hAxis.logarithmBase ); 1081 double interval = (indexedSeries) ? 1 : area.GetPointsInterval( hAxis.IsLogarithmic, hAxis.logarithmBase );
Common\ChartTypes\ColumnChart.cs (2)
350area.GetPointsInterval(typeSeries, hAxis.IsLogarithmic, hAxis.logarithmBase, true, out sameInterval); 364interval = area.GetPointsInterval( typeSeries, hAxis.IsLogarithmic, hAxis.logarithmBase, true, out sameInterval );
Common\ChartTypes\ErrorBarChart.cs (4)
323 double interval = (indexedSeries) ? 1 : area.GetPointsInterval( hAxis.IsLogarithmic, hAxis.logarithmBase ); 403 area.GetPointsInterval( typeLinkedSeries, hAxis.IsLogarithmic, hAxis.logarithmBase, true, out showSideBySide ); 1108 double interval = (indexedSeries) ? 1 : area.GetPointsInterval( hAxis.IsLogarithmic, hAxis.logarithmBase ); 1182 area.GetPointsInterval( typeLinkedSeries, hAxis.IsLogarithmic, hAxis.logarithmBase, true, out showSideBySide );
Common\ChartTypes\StackedBarChart.cs (7)
704area.GetPointsInterval(typeSeries, vAxis.IsLogarithmic, vAxis.logarithmBase, true, out sameInterval); 718interval = area.GetPointsInterval(vAxis.IsLogarithmic, vAxis.logarithmBase); 759 yValue = Math.Log( yValue, hAxis.logarithmBase ); 849 barZeroValue = Math.Log( barZeroValue, hAxis.logarithmBase ); 961 yValue = Math.Pow( hAxis.logarithmBase, yValue ); 1711 yValue = Math.Log( yValue, hAxis.logarithmBase ); 1759 barZeroValue = Math.Log( barZeroValue, hAxis.logarithmBase );
Common\ChartTypes\StackedColumnChart.cs (3)
713area.GetPointsInterval(typeSeries, hAxis.IsLogarithmic, hAxis.logarithmBase, true, out sameInterval); 727interval = area.GetPointsInterval(hAxis.IsLogarithmic, hAxis.logarithmBase); 966 yValue = Math.Pow( vAxis.logarithmBase, yValue );
Common\ChartTypes\StockChart.cs (2)
353 double interval = (indexedSeries) ? 1 : area.GetPointsInterval( HAxis.IsLogarithmic, HAxis.logarithmBase ); 1157 double interval = (indexedSeries) ? 1 : area.GetPointsInterval( HAxis.IsLogarithmic, HAxis.logarithmBase );
Common\General\Axis.cs (1)
5157yValue = Math.Log(yValue, this.logarithmBase);
Common\General\AxisLabels.cs (2)
604 labValue = Math.Pow( this.logarithmBase, labValue ); 729 labValue = Math.Pow( this.logarithmBase, labValue );
Common\General\AxisScale.cs (9)
658 return Math.Pow( this.logarithmBase, GetCrossing() ); 773 return logarithmBase; 958 axisValue = Math.Log( axisValue, this.logarithmBase ); 1325 double power = (this.IsLogarithmic) ? this.logarithmBase : 10.0; 1938 viewMaximum = Math.Pow( this.logarithmBase, viewMaximum ); 1939 viewMinimum = Math.Pow( this.logarithmBase, viewMinimum ); 2105 crossingValue = Math.Log( crossingValue, this.logarithmBase ); 2108 minimumValue = Math.Log( minimumValue, this.logarithmBase ); 2109 maximumValue = Math.Log( maximumValue, this.logarithmBase );
Common\General\GridTickMarks.cs (2)
408logInterval = Math.Log(1 + this.interval * logStep, Axis.logarithmBase); 1387 double logInterval = Math.Log( 1 + this.interval * logStep, _axis.logarithmBase );