문제

What is analog of AddFieldTo on FastCube 2 components for Delphi? We've used the following code before:

TfcxSlice.AddFieldTo(FieldName, Caption, rf_CapXAx);

The problem is caused by the new TfcxCommonFieldsOfRegion class:

private
  procedure Delete(AIndex: TfcxSmallCount);
  function Add(AField: TfcxCommonFieldOfRegion): TfcxSmallCount;
  procedure Insert(AField: TfcxCommonFieldOfRegion; AIndex: TfcxSmallCount);

So, there is no strict way to change TfcxCommonFieldsOfRegion object.

도움이 되었습니까?

해결책

The new code:

XAxisContainer.AddDimension(TfcxSliceField, FieldName, Caption);
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top