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