Search results for query: *

  1. M

    Chart move the x and y axes

    public void Vykresli() { graf.Series["Kvadraticka funkce"].Points.Clear(); if (a > 0) { double VrcholX = 0 - (b / 2);// double VrcholY = a * VrcholX * VrcholX + b * VrcholX + c; for (double x = RozA...
  2. M

    Chart move the x and y axes

    Video is useless, i know how to draw chart and add points. And this document is just like "Car" - you can drive Its all
  3. M

    Chart move the x and y axes

    I don't know how I can't find anything that I understand how can it help me.
  4. M

    Chart move the x and y axes

    I need to take values from the X-axis and write to autoupdate to render immediately when changing the values on the x-axis. Form: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using...
  5. M

    Chart move the x and y axes

    Vrchol is Peak public void Vykresli() { graf.Series["Kvadraticka funkce"].Points.Clear(); if (a > 0) { double VrcholX = 0 - (b / 2);// double VrcholY = a * VrcholX * VrcholX + b * VrcholX + c; for...
  6. M

    Chart move the x and y axes

    I shared what I have, I just add value to chart with cycle because I don't know how to continue.
  7. M

    Chart move the x and y axes

    Hi guys, I need your help. I want to draw graph in c#. I use windowsform chart to do this. But I would need to move the x and y axes, and the graph should be drawn accordingly and not limited to a fixed value, and I need to zoom. I tried using LiveCharts, but their codes are too complex for me...
Back
Top Bottom