private void codebehindGauge()
        {
            GoogleChartsNGraphsControls.GVGauge chart = new GoogleChartsNGraphsControls.GVGauge();
            chart.Width = WD;
            chart.Height = HT;

            chart.GviRedFrom = 90;
            chart.GviRedTo = 100;
            chart.GviYellowFrom = 75;
            chart.GviYellowTo = 90;

            chart.DataSource = getDT();
            chart.DataBind();

            this.PlaceHolderChart.Controls.Add(chart);
        }
Beispiel #2
0
        private void codebehindGauge()
        {
            GoogleChartsNGraphsControls.GVGauge chart = new GoogleChartsNGraphsControls.GVGauge();
            chart.Width  = WD;
            chart.Height = HT;

            chart.GviRedFrom    = 90;
            chart.GviRedTo      = 100;
            chart.GviYellowFrom = 75;
            chart.GviYellowTo   = 90;


            chart.DataSource = getDT();
            chart.DataBind();

            this.PlaceHolderChart.Controls.Add(chart);
        }