
-=Oleg=-
-=Oleg=-
About
- Username
- -=Oleg=-
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
1. Edit in fcCube.pas: function TPCharArray.GetCaption(AIndex: Integer): TfcString; begin if IsNull[AIndex] then Result := FHash.FCube.NullStr else if FList[AIndex].Caption = nil then Result := FDisplayFormat.FormatData(TfcString(PAns…
-
Hi. No way. I will add this property. Oleg Pryalkov
-
Hi. Use custom format (type fkCustom) You can to create and registrate custom formates (fcCustomFormats.AddFormat). See examples fcExamples. Oleg Pryalkov.
-
Hi. Your code is right. I test it in Delphi 7. Try add: fcSlice.AddFieldTo(sMeasuresFieldName,'',rf_CapXAx); after AddFieldTo Oleg Pryalkov.
-
Hi. Calculation measures require FastScript. Use Recompile Wizard for FastCube (recompile.exe) to add FastScript support. Oleg.
-
It is planned in FastCube 2
-
It is interesting idea, we shall look as it to make.
-
Hi. Examples: To change format in measure: procedure ex_ChangeDisplayFormatOfMeasureAmount; var AIndex: integer; begin AIndex := fcSlice.FieldsOfRegion(rf_CapFacts).IndexOf('Measure_1'); if AIndex >= 0 then begin fcSlice.BeginUpdate;…
-
Hi. Describe more in detail a problem. Attach screenshots. Oleg.
-
In plan after version 2.
-
This function is blocked in TRIAL version.
-
You can use event OnGetFieldConv to convert string field to float.
-
Hi. What is the field type? Function "Sum" is not allowed for string type. Oleg.
-
Yes. It is necessary to update FastReport (current version - 4.9.106).
-
Hi. 1. Use Recompile Wizard for FastCube (recompile.exe) to install FastReport integration package. 2. TfrcCrossView is the component in FastReport designer. Place component TfrcComponents (from "FastReport 4.0" palette page) to add TfrcCrossVi…
-
Fixed in 1.7.3
-
Hi. var AIndex: integer; begin ... AIndex := fcSlice1.AddFieldTo('rowsum', 'Row sum', rf_CapFacts, af_Sum); fcSlice1.BeginUpdate; fcSlice1.CapFactsFieldsAbs[AIndex].DisplayFormat.Kind := fkNumeric; fcSlice1.CapFactsFieldsAbs[AIndex].Display…
-
Hi. fcCube.DefaultFormat is used for creating fields when the data are loaded from a database. When the cube is opened fcCube.DefaultFormat is not used. If You load cube from file or stream, is used saved format. You can change format in sli…
-
Hi. Use format string: %2.2f or %2.2n Oleg.
-
Hi. Use in TfcSlice property RegionFieldExpanded[ARegion: TfcRegionOfField; AFieldIndex: Integer]: Boolean; to collapse dimention. For example: fcSlice.RegionFieldExpanded[rf_CapXAx, 0] := False; or fcSlice.XAxisFullExpanded[0] := False…
-
Hi. FastCube ver 1 does not support addition of the data and joining of the cubes. This property is planned in Ver 2. Oleg.
-
Old version FastScript in FastReport 3 not contain some functions for FastCube. See errors in recompile.log Oleg.
-
Update. Current version - 1.6.6. Oleg.
-
Yes. You can use FastScript from FastReport 4. Set in Recompile Wizard path to FastScript dcu: C:\Program Files\FastReports\FastReport 4\libd7 and recompile. If error, attach recompile.log. Oleg
-
Hi. Do You have FastReport or FastScript? Calculation measures require FastScript. Oleg.
-
Hi. Use Recompile Wizard for FastCube (recompile.exe) to add FastScript support. Oleg.
-
Hi. The answer is in Your ticket in support. Oleg.
-
Hi. Professional Version = Standart + Sources. Oleg.
-
Hi. Yes. FastCube works with DBF. You can use BDE, ADO or other components to connect with dBase. FastCube supports any TDataSet descendants. Oleg.
-
Hi. Please write: -database type -dataset component -type of field in database -type of field component in Delphi for this field -Delphi version Oleg.