4 writes to _funnelMinPointHeight
System.Web.DataVisualization (4)
Common\ChartTypes\FunnelChart.cs (4)
414
this.
_funnelMinPointHeight
= 0f;
2263
this.
_funnelMinPointHeight
= 0f;
2275
this.
_funnelMinPointHeight
= pointHeight;
2284
this.
_funnelMinPointHeight
= (float)(this.yValueTotal * this._funnelMinPointHeight / 100f);
5 references to _funnelMinPointHeight
System.Web.DataVisualization (5)
Common\ChartTypes\FunnelChart.cs (5)
2278
if (!parseSucceed || this.
_funnelMinPointHeight
< 0f || this.
_funnelMinPointHeight
> 100f)
2284
this._funnelMinPointHeight = (float)(this.yValueTotal * this.
_funnelMinPointHeight
/ 100f);
2768
if(yValue < this.
_funnelMinPointHeight
)
2770
yValue = this.
_funnelMinPointHeight
;