protected override void OnRender(ChartControl _chartControl, ChartScale _chartScale)
{
base.OnRender(_chartControl, _chartScale);
[B]chartScale [/B]= _chartScale;
private void GetPointsFromAnchor(bool _testSizeChanged)
{
rectStartPoint = rect.StartAnchor.GetPoint( this.ChartControl, this.ChartPanel, [B]chartScale[/B], false );
- A direct X error has occurred while rendering the chart: HRESULT: [0x88990001], Module: [SharpDX.Direct2D1], ApiCode: [D2DERR_WRONG_STATE/WrongState], Message: The object was not in the correct state to process the method.
- Chart rendering failed. There is likely a problem with a chart object's OnRender method. D2D error = 'HRESULT: [0x88990001], Module: [SharpDX.Direct2D1], ApiCode: [D2DERR_WRONG_STATE/WrongState], Message: The object was not in the correct state to process the method. '

Comment