Ejemplo n.º 1
0
        internal ArrayDrawer(Graph graph, ViewArgs args) : base(graph, args)
        {
            this.graph  = graph;
            preViewArgs = args;

            valuesAreOutdated = true;
            valuePoints       = new ValuePoints(graph);
            pixelManager      = new PixelPointsManager(valuePoints);

            valuePoints.Recalculate(args);
            pixelManager.Recalculate(args);

            lastUpdatedValuesValueDimensions = args.ValueDimensions;
        }
Ejemplo n.º 2
0
 public PixelPoints(ValuePoints valuePoints)
 {
     this.valuePoints = valuePoints;
 }