SmartQuant.Charting.Chart.Divide C# (CSharp) Méthode

Divide() public méthode

public Divide ( int x, int y ) : void
x int
y int
Résultat void
        public void Divide(int x, int y)
        {
            var widths = Enumerable.Range(1, x).Select(i => i / (double)x).ToArray();
            var heights = Enumerable.Range(1, y).Select(i => i / (double)y).ToArray();
            Divide(x, y, widths, heights);
        }

Same methods

Chart::Divide ( int x, int y, double widths, double heights ) : void