예제 #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;
        }
예제 #2
0
 public PixelPoints(ValuePoints valuePoints)
 {
     this.valuePoints = valuePoints;
 }