[]
type ChartSettings = object;
optional canUseWizard: boolean;
Specifies whether Chart Wizard is available for creating Chart
// ESM usage
import { arWebDesigner } from './web-designer.js';
arWebDesigner.create('#ar-web-designer', {
rdlx: {
reportItemsFeatures: {
chart: {
canUseWizard: false
}
}
}
});
// UMD usage
GrapeCity.ActiveReports.Designer.create('#ar-web-designer', {
rdlx: {
reportItemsFeatures: {
chart: {
canUseWizard: false
}
}
}
});
GrapeCity.ActiveReports.Designer.create('#ar-web-designer', {
rdlx: {
reportItemsFeatures: {
chart: {
canUseWizard: false
}
}
}
});
true
optional hiddenEncodings: DvChartEncodingType[];
Excludes given encodings from encoding panel in chart adorner
// ESM usage
import { arWebDesigner } from './web-designer.js';
arWebDesigner.create('#ar-web-designer', {
rdlx: {
reportItemsFeatures: {
chart: {
hiddenEncodings: ['Color', 'Text']
}
}
}
});
// UMD usage
GrapeCity.ActiveReports.Designer.create('#ar-web-designer', {
rdlx: {
reportItemsFeatures: {
chart: {
hiddenEncodings: ['Color', 'Text']
}
}
}
});
GrapeCity.ActiveReports.Designer.create('#ar-web-designer', {
rdlx: {
reportItemsFeatures: {
chart: {
hiddenEncodings: ['Color', 'Text']
}
}
}
});
optional plotChartTypes: DvChartPlotType[];
Limits the list of plot chart types available for creation.
By default all plot chart types supported by ActiveReports are available.
// ESM usage
import { arWebDesigner } from './web-designer.js';
arWebDesigner.create('#ar-web-designer', {
rdlx: {
reportItemsFeatures: {
chart: {
plotChartTypes: ['Column', 'Bar', 'Line']
}
}
}
});
// UMD usage
GrapeCity.ActiveReports.Designer.create('#ar-web-designer', {
rdlx: {
reportItemsFeatures: {
chart: {
plotChartTypes: ['Column', 'Bar', 'Line']
}
}
}
});
GrapeCity.ActiveReports.Designer.create('#ar-web-designer', {
rdlx: {
reportItemsFeatures: {
chart: {
plotChartTypes: ['Column', 'Bar', 'Line']
}
}
}
});