API Reference
ApexCharts
Represents an ApexCharts component that can be embedded in the HTML output for displaying dynamic client-side charts.
Inheritance
- Element
- ApexCharts
Constructors
public ApexCharts() #Initializes a new instance of the ApexCharts class.
Methods
public ApexCharts AddArea(String name, Double value) #ApexChartsAdds an area chart data point.
Parameters
- name System.String
- Label for the data point.
- value System.Double
- Numeric value.
Returns
The current ApexCharts instance.
public ApexCharts AddBar(String name, Double value) #ApexChartsAdds a bar chart data point.
Parameters
- name System.String
- Label for the data point.
- value System.Double
- Numeric value.
Returns
The current ApexCharts instance.
public ApexCharts AddBoxPlot(String x, Double min, Double q1, Double median, Double q3, Double max) #ApexChartsAdds a boxplot data point.
Parameters
- x System.String
- X value (category).
- min System.Double
- Minimum value.
- q1 System.Double
- First quartile.
- median System.Double
- Median value.
- q3 System.Double
- Third quartile.
- max System.Double
- Maximum value.
Returns
The current ApexCharts instance.
public ApexCharts AddBubble(Double x, Double y, Double z) #ApexChartsAdds a bubble chart data point.
Parameters
- x System.Double
- X coordinate.
- y System.Double
- Y coordinate.
- z System.Double
- Bubble size.
Returns
The current ApexCharts instance.
public ApexCharts AddBullet(String label, Double value, Double target = 100) #ApexChartsAdds a compact KPI-style bullet (horizontal bar) with an optional target marker using Apex "goals".
Parameters
- label System.String
- Bullet label/category.
- value System.Double
- Actual value.
- target System.Double = 100
- Target marker value (default 100).
public ApexCharts AddCandlestick(String x, Double open, Double high, Double low, Double close) #ApexChartsAdds a candlestick data point.
Parameters
- x System.String
- X value (typically date/time).
- open System.Double
- Opening price.
- high System.Double
- High price.
- low System.Double
- Low price.
- close System.Double
- Closing price.
Returns
The current ApexCharts instance.
public ApexCharts AddColumn(String name, Double value) #ApexChartsAdds a column chart data point.
Parameters
- name System.String
- Label for the data point.
- value System.Double
- Numeric value.
Returns
The current ApexCharts instance.
public ApexCharts AddDonut(String name, Double value) #ApexChartsAdds a donut chart data point.
Parameters
- name System.String
- Label for the data point.
- value System.Double
- Numeric value.
Returns
The current ApexCharts instance.
public ApexCharts AddDonut(String name, Double value, RGBColor color) #ApexChartsAdds a donut chart data point with a specific color.
Parameters
- name System.String
- value System.Double
- color System.String
AddDonut(System.String name, System.Double value, HtmlForgeX.RGBColor color) #Adds a donut chart data point with a specific color.
Parameters
- name System.String
- value System.Double
- color HtmlForgeX.RGBColor
public ApexCharts AddFunnel(String name, Double value) #ApexChartsAdds a funnel chart data point.
Parameters
- name System.String
- Label for the data point.
- value System.Double
- Numeric value.
Returns
The current ApexCharts instance.
public ApexCharts AddHeatmap(String name, IEnumerable<ValueTuple<String, Double>> points) #ApexChartsAdds a heatmap series consisting of multiple points.
Parameters
- name System.String
- Series name.
- points System.Collections.Generic.IEnumerable{System.ValueTuple{System.String,System.Double}}
- Collection of points (X,Y).
Returns
The current ApexCharts instance.
public ApexCharts AddLine(String name, Double value) #ApexChartsAdds a line chart data point.
Parameters
- name System.String
- Label for the data point.
- value System.Double
- Numeric value.
Returns
The current ApexCharts instance.
public ApexCharts AddMixed(String name, Double value) #ApexChartsAdds a data point for a mixed chart.
Parameters
- name System.String
- Label for the data point.
- value System.Double
- Numeric value.
Returns
The current ApexCharts instance.
public ApexCharts AddPie(String name, Double value) #ApexChartsAdds a pie chart data point.
Parameters
- name System.String
- Label for the data point.
- value System.Double
- Numeric value.
Returns
The current ApexCharts instance.
public ApexCharts AddPie(String name, Double value, RGBColor color) #ApexChartsAdds a pie chart data point with a specific color.
Parameters
- name System.String
- value System.Double
- color System.String
AddPie(System.String name, System.Double value, HtmlForgeX.RGBColor color) #Adds a pie chart data point with a specific color.
Parameters
- name System.String
- value System.Double
- color HtmlForgeX.RGBColor
public ApexCharts AddPolarArea(String name, Double value) #ApexChartsAdds a polar area chart data point.
Parameters
- name System.String
- Label for the data point.
- value System.Double
- Numeric value.
Returns
The current ApexCharts instance.
public ApexCharts AddRadar(String name, Double value) #ApexChartsAdds a radar chart data point.
Parameters
- name System.String
- Label for the data point.
- value System.Double
- Numeric value.
Returns
The current ApexCharts instance.
public ApexCharts AddRadialBar(String name, Double value) #ApexChartsAdds a radial bar chart data point.
Parameters
- name System.String
- Label for the data point.
- value System.Double
- Numeric value.
Returns
The current ApexCharts instance.
public ApexCharts AddScatter(Double x, Double y) #ApexChartsAdds a scatter chart data point.
Parameters
- x System.Double
- X coordinate.
- y System.Double
- Y coordinate.
Returns
The current ApexCharts instance.
public ApexCharts AddSeries(String seriesName, params Double[] data) #ApexChartsAdds a series with multiple data points for multi-series charts.
Parameters
- seriesName System.String
- Name of the series.
- data System.Double[]
- Array of data values.
Returns
The current ApexCharts instance.
public ApexCharts AddStackedBar(String seriesName, params ValueTuple<String, Double>[] points) #ApexChartsAdds/extends a stacked bar series and aligns categories automatically.
Parameters
- seriesName System.String
- Series name.
- points System.ValueTuple{System.String,System.Double}[]
- Pairs of (category, value).
public ApexCharts AddTreemap(String name, Double value) #ApexChartsAdds a treemap chart data point.
Parameters
- name System.String
- Label for the data point.
- value System.Double
- Numeric value.
Returns
The current ApexCharts instance.
public ApexCharts AddWaffle(Double percent) #ApexChartsAdds a 10x10 waffle chart showing a percentage fill using Heatmap.
Parameters
- percent System.Double
- Percentage 0..100.
public ApexCharts Animations(Boolean enabled, Int32 speed = 800) #ApexChartsSets chart animations.
Parameters
- enabled System.Boolean
- Whether animations are enabled.
- speed System.Int32 = 800
- Animation speed in milliseconds.
Returns
The current ApexCharts instance.
public ApexCharts Chart(Action<ApexChartOptions> configure) #ApexChartsConfigures chart options using a fluent builder.
Parameters
- configure System.Action{HtmlForgeX.ApexChartOptions}
- Delegate used to configure chart options.
Returns
The current ApexCharts instance.
public ApexCharts Colors(params RGBColor[] colors) #ApexChartsSets chart colors.
Parameters
- colors System.String[]
- Array of color values.
Returns
The current ApexCharts instance.
Colors(HtmlForgeX.RGBColor[] colors) #Sets chart colors using RGBColor.
Parameters
- colors HtmlForgeX.RGBColor[]
- Array of RGBColor values.
Returns
The current ApexCharts instance.
public ApexCharts Data(String name, Double value) #ApexChartsAdds a data point to the chart using the currently selected type.
Parameters
- name System.String
- Label for the data point.
- value System.Double
- Numeric value.
Returns
The current ApexCharts instance.
public ApexCharts DataLabels(Action<ApexDataLabelsOptions> configure) #ApexChartsConfigures data labels options.
Parameters
- configure System.Action{HtmlForgeX.ApexDataLabelsOptions}
- Delegate used to configure data labels options.
Returns
The current ApexCharts instance.
public ApexCharts Fill(Action<ApexFillOptions> configure) #ApexChartsConfigures fill options.
Parameters
- configure System.Action{HtmlForgeX.ApexFillOptions}
- Delegate used to configure fill options.
Returns
The current ApexCharts instance.
public ApexCharts Grid(Action<ApexGridOptions> configure) #ApexChartsConfigures grid options using a fluent builder.
Parameters
- configure System.Action{HtmlForgeX.ApexGridOptions}
- Delegate used to configure grid options.
Returns
The current ApexCharts instance.
public ApexCharts Legend(Action<ApexLegendOptions> configure) #ApexChartsConfigures legend options using a fluent builder.
Parameters
- configure System.Action{HtmlForgeX.ApexLegendOptions}
- Delegate used to configure legend options.
Returns
The current ApexCharts instance.
public ApexCharts PlotOptions(Action<ApexPlotOptions> configure) #ApexChartsConfigures plot options using a fluent builder.
Parameters
- configure System.Action{HtmlForgeX.ApexPlotOptions}
- Delegate used to configure options.
Returns
The current ApexCharts instance.
RegisterLibraries() #Registers the required libraries for ApexCharts.
public ApexCharts Responsive(Object value) #ApexChartsSets the responsive option value.
Parameters
- value System.Object
- Responsive configuration object.
Returns
The current ApexCharts instance.
public ApexCharts SetOption(String key, Object value) #ApexChartsSets a raw option value passed directly to the ApexCharts configuration.
Parameters
- key System.String
- Option key.
- value System.Object
- Option value.
Returns
The current ApexCharts instance.
public ApexCharts Stroke(Action<ApexStrokeOptions> configure) #ApexChartsConfigures stroke options.
Parameters
- configure System.Action{HtmlForgeX.ApexStrokeOptions}
- Delegate used to configure stroke options.
Returns
The current ApexCharts instance.
public ApexCharts Theme(Action<ApexThemeOptions> configure) #ApexChartsConfigures theme options.
Parameters
- configure System.Action{HtmlForgeX.ApexThemeOptions}
- Delegate used to configure theme options.
Returns
The current ApexCharts instance.
public ApexCharts Tooltip(Action<ApexTooltipOptions> configure) #ApexChartsConfigures tooltip options using a fluent builder.
Parameters
- configure System.Action{HtmlForgeX.ApexTooltipOptions}
- Delegate used to configure tooltip options.
Returns
The current ApexCharts instance.
public override String ToString() #StringGenerates the HTML and JavaScript required to render the chart.
Returns
HTML markup representing the chart.
public ApexCharts ValueClamping(Action<ChartValueClampingOptions> configure) #ApexChartsEnables value clamping/rounding for this chart.
Parameters
- configure System.Action{HtmlForgeX.ChartValueClampingOptions}
public ApexCharts XAxis(Action<ApexAxisOptions> configure) #ApexChartsConfigures X-axis options.
Parameters
- configure System.Action{HtmlForgeX.ApexAxisOptions}
- Delegate used to configure X-axis options.
Returns
The current ApexCharts instance.
public ApexCharts YAxis(Action<ApexAxisOptions> configure) #ApexChartsConfigures Y-axis options.
Parameters
- configure System.Action{HtmlForgeX.ApexAxisOptions}
- Delegate used to configure Y-axis options.
Returns
The current ApexCharts instance.
Inherited Methods
public TablerAccordion Accordion(Action<TablerAccordion> config) #TablerAccordionParameters
- config Action<TablerAccordion>
public TablerActionsAndNotesCard ActionsAndNotesCard(Action<TablerActionsAndNotesCard> config) #TablerActionsAndNotesCardParameters
- config Action<TablerActionsAndNotesCard>
public TablerActionSummaryCard ActionSummaryCard(Action<TablerActionSummaryCard> config) #TablerActionSummaryCardParameters
- config Action<TablerActionSummaryCard>
public TablerActivityFeedCard ActivityFeedCard(Action<TablerActivityFeedCard> config) #TablerActivityFeedCardParameters
- config Action<TablerActivityFeedCard>
public override Element Add(Element element) #ElementParameters
- element Element
public TablerAlert Alert(String title, String message, TablerColor alertColor = Default, TablerAlertType alertType = Regular) #TablerAlertParameters
- title String
- message String
- alertColor TablerColor = Default
- alertType TablerAlertType = Regular
public TablerAnalyticsSummaryCard AnalyticsSummaryCard(Action<TablerAnalyticsSummaryCard> config) #TablerAnalyticsSummaryCardParameters
- config Action<TablerAnalyticsSummaryCard>
public ApexCharts ApexChart(Action<ApexCharts> config) #ApexChartsParameters
- config Action<ApexCharts>
public TablerApexChartCard ApexChartCard(Action<TablerApexChartCard> config) #TablerApexChartCardParameters
- config Action<TablerApexChartCard>
public TablerAuditLogCard AuditLogCard(Action<TablerAuditLogCard> config) #TablerAuditLogCardParameters
- config Action<TablerAuditLogCard>
public TablerAvatar Avatar() #TablerAvatarParameters
- config Action<TablerAvatar>
public TablerAvatarGroup AvatarGroup(Action<TablerAvatarGroup> config) #TablerAvatarGroupParameters
- config Action<TablerAvatarGroup>
public TablerBadge Badge(String text, TablerBadgeColor color, TablerBadgeVisualStyle style, TablerBadgeSize size, Boolean pill = true, String href = null) #TablerBadgeParameters
- text String
- color TablerBadgeColor = null
public TablerBadgeSpan BadgeSpan(String text, TablerColor color = Blue) #TablerBadgeSpanParameters
- text String
- color TablerColor = Blue
public TablerBadgeStatus BadgeStatus(String text, TablerColor color) #TablerBadgeStatusParameters
- text String
- color TablerColor
public TablerBreakdownCard BreakdownCard(Action<TablerBreakdownCard> config) #TablerBreakdownCardParameters
- config Action<TablerBreakdownCard>
public TablerButton Button(String text, TablerButtonVariant variant = Primary) #TablerButtonParameters
- text String
- config Action<TablerButton> = Primary
public TablerCalendarWorkspaceCard CalendarWorkspaceCard(Action<TablerCalendarWorkspaceCard> config) #TablerCalendarWorkspaceCardParameters
- config Action<TablerCalendarWorkspaceCard>
public TablerCard Card(Int32 count, Action<TablerCard> config) #TablerCardParameters
- config Action<TablerCard>
public TablerCardBasic CardBasic(String title, String text) #TablerCardBasicParameters
- title String
- text String
public TablerCarousel Carousel(Action<TablerCarousel> config) #TablerCarouselParameters
- config Action<TablerCarousel>
public TablerCategoryBarChartCard CategoryBarChartCard(Action<TablerCategoryBarChartCard> config) #TablerCategoryBarChartCardParameters
- config Action<TablerCategoryBarChartCard>
public ChartJs ChartJs(Action<ChartJs> config) #ChartJsParameters
- config Action<ChartJs>
public TablerColumn Column(TablerColumnNumber number, Action<TablerColumn> config) #TablerColumnParameters
- config Action<TablerColumn>
public TablerControlBar ControlBar(Action<TablerControlBar> config) #TablerControlBarParameters
- config Action<TablerControlBar>
public TablerCookieBanner CookieBanner(Action<TablerCookieBanner> config) #TablerCookieBannerParameters
- config Action<TablerCookieBanner>
public TablerCountdown Countdown(Action<TablerCountdown> config = null) #TablerCountdownParameters
- config Action<TablerCountdown> = null
public TablerCountUp CountUp(Action<TablerCountUp> config) #TablerCountUpParameters
- config Action<TablerCountUp>
public TablerDataGrid DataGrid(Action<TablerDataGrid> config) #TablerDataGridParameters
- config Action<TablerDataGrid>
public TablerDataGridCard DataGridCard(Action<TablerDataGridCard> config) #TablerDataGridCardParameters
- config Action<TablerDataGridCard>
public TablerDataTableCard DataTableCard(Action<TablerDataTableCard> config) #TablerDataTableCardParameters
- config Action<TablerDataTableCard>
public VisNetwork DiagramNetwork(Action<VisNetwork> config) #VisNetworkParameters
- config Action<VisNetwork>
public TablerDistributionCard DistributionCard(Action<TablerDistributionCard> config) #TablerDistributionCardParameters
- config Action<TablerDistributionCard>
public HtmlTag Div(Action<HtmlTag> config) #HtmlTagParameters
- config Action<HtmlTag>
public TablerEmptyState EmptyState(Action<TablerEmptyState> config) #TablerEmptyStateParameters
- config Action<TablerEmptyState>
public TablerEmptyStateCard EmptyStateCard(Action<TablerEmptyStateCard> config) #TablerEmptyStateCardParameters
- config Action<TablerEmptyStateCard>
public override Boolean Equals(Object obj) #BooleanParameters
- obj Object
public FancyTree FancyTree(Action<FancyTree> config) #FancyTreeParameters
- config Action<FancyTree>
public TablerFlagIcon Flag(Country country) #TablerFlagIconParameters
- iso2 String
public TablerFlagList Flags(Action<TablerFlagList> config) #TablerFlagListParameters
- config Action<TablerFlagList>
public TablerForm Form(Action<TablerForm> config) #TablerFormParameters
- config Action<TablerForm>
public FullCalendar FullCalendar(Action<FullCalendar> config) #FullCalendarParameters
- config Action<FullCalendar>
public TablerGaugeCard GaugeCard(Action<TablerGaugeCard> config) #TablerGaugeCardParameters
- config Action<TablerGaugeCard>
public TablerGeoSummaryCard GeoSummaryCard(Action<TablerGeoSummaryCard> config) #TablerGeoSummaryCardParameters
- config Action<TablerGeoSummaryCard>
public HeaderLevel HeaderLevel(HeaderLevelTag level, String text) #HeaderLevelParameters
- level HeaderLevelTag
- text String
public TablerHeroCard HeroCard(Action<TablerHeroCard> config) #TablerHeroCardParameters
- config Action<TablerHeroCard>
public TablerHighlightCard HighlightCard(Action<TablerHighlightCard> config) #TablerHighlightCardParameters
- config Action<TablerHighlightCard>
public TablerIconElement Icon(TablerIconType icon, Action<TablerIconElement> config) #TablerIconElementParameters
- icon FontAwesomeSolid
- config Action<FontAwesomeIcon> = null
public TablerIconFont IconFont(TablerIconType icon) #TablerIconFontParameters
- icon String
public TablerIncidentTimelineCard IncidentTimelineCard(Action<TablerIncidentTimelineCard> config) #TablerIncidentTimelineCardParameters
- config Action<TablerIncidentTimelineCard>
public TablerInsightSummaryCard InsightSummaryCard(Action<TablerInsightSummaryCard> config) #TablerInsightSummaryCardParameters
- config Action<TablerInsightSummaryCard>
public TablerLightboxGallery LightboxGallery(Action<TablerLightboxGallery> config) #TablerLightboxGalleryParameters
- config Action<TablerLightboxGallery>
public TablerLineComparisonCard LineComparisonCard(Action<TablerLineComparisonCard> config) #TablerLineComparisonCardParameters
- config Action<TablerLineComparisonCard>
public TablerButton LinkButton(String text, String href, TablerButtonVariant variant = Primary) #TablerButtonParameters
- text String
- href String
- variant TablerButtonVariant = Primary
public TablerListCard ListCard(Action<TablerListCard> config) #TablerListCardParameters
- config Action<TablerListCard>
public TablerListGroup ListGroup(Action<TablerListGroup> config) #TablerListGroupParameters
- config Action<TablerListGroup>
public TablerLogs Logs(List<String> code, RGBColor backgroundColor, RGBColor textColor) #TablerLogsParameters
- code String
- theme TablerLogsTheme = Dark
- backgroundClass String = null
- textClass String = null
public TablerMapSummaryCard MapSummaryCard(Action<TablerMapSummaryCard> config) #TablerMapSummaryCardParameters
- config Action<TablerMapSummaryCard>
public TablerMetricCard MetricCard(Action<TablerMetricCard> config) #TablerMetricCardParameters
- config Action<TablerMetricCard>
public TablerModal Modal(Action<TablerModal> config) #TablerModalParameters
- config Action<TablerModal>
public TablerNarrativeCard NarrativeCard(Action<TablerNarrativeCard> config) #TablerNarrativeCardParameters
- config Action<TablerNarrativeCard>
public TablerNarrativeSummaryCard NarrativeSummaryCard(Action<TablerNarrativeSummaryCard> config) #TablerNarrativeSummaryCardParameters
- config Action<TablerNarrativeSummaryCard>
public TablerPageHeader PageHeader(Action<TablerPageHeader> config) #TablerPageHeaderParameters
- config Action<TablerPageHeader>
public TablerPeopleReviewCard PeopleReviewCard(Action<TablerPeopleReviewCard> config) #TablerPeopleReviewCardParameters
- config Action<TablerPeopleReviewCard>
public TablerPlaceholder Placeholder(Action<TablerPlaceholder> config) #TablerPlaceholderParameters
- config Action<TablerPlaceholder>
public TablerPlaceholderCard PlaceholderCard(Action<TablerPlaceholderCard> config) #TablerPlaceholderCardParameters
- config Action<TablerPlaceholderCard>
public TablerPlaceholderContainer Placeholders(Action<TablerPlaceholderContainer> config) #TablerPlaceholderContainerParameters
- config Action<TablerPlaceholderContainer>
public TablerPresenceListCard PresenceListCard(Action<TablerPresenceListCard> config) #TablerPresenceListCardParameters
- config Action<TablerPresenceListCard>
public TablerProgressBar ProgressBar(TablerProgressBarType type, Int32 percentage, Nullable<TablerColor> tablerBackground = null) #TablerProgressBarParameters
- config Action<TablerProgressBar>
public TablerProgressListCard ProgressListCard(Action<TablerProgressListCard> config) #TablerProgressListCardParameters
- config Action<TablerProgressListCard>
public EasyQRCodeElement QRCode(String text) #EasyQRCodeElementParameters
- text String
public QuillEditor QuillEditor(Action<QuillEditor> config = null) #QuillEditorParameters
- config Action<QuillEditor> = null
public TablerReviewListCard ReviewListCard(Action<TablerReviewListCard> config) #TablerReviewListCardParameters
- config Action<TablerReviewListCard>
public TablerRow Row(Action<TablerRow> config) #TablerRowParameters
- config Action<TablerRow>
public TablerScheduleSummaryCard ScheduleSummaryCard(Action<TablerScheduleSummaryCard> config) #TablerScheduleSummaryCardParameters
- config Action<TablerScheduleSummaryCard>
public ScrollingText ScrollingText(Action<ScrollingText> config) #ScrollingTextParameters
- config Action<ScrollingText>
public TablerScrollSpy ScrollSpy(Action<TablerScrollSpy> config) #TablerScrollSpyParameters
- config Action<TablerScrollSpy>
public SmartTab SmartTab(Action<SmartTab> config) #SmartTabParameters
- config Action<SmartTab>
public SmartWizard SmartWizard(Action<SmartWizard> config) #SmartWizardParameters
- config Action<SmartWizard>
public TablerSocialTileCard SocialTileCard(Action<TablerSocialTileCard> config) #TablerSocialTileCardParameters
- config Action<TablerSocialTileCard>
public Span Span(String content = "") #SpanParameters
- content String = ""
public TablerSparkline Sparkline(Action<TablerSparkline> config) #TablerSparklineParameters
- config Action<TablerSparkline>
public TablerSpinner Spinner(Action<TablerSpinner> config) #TablerSpinnerParameters
- config Action<TablerSpinner>
public TablerStatTileCard StatTileCard(Action<TablerStatTileCard> config) #TablerStatTileCardParameters
- config Action<TablerStatTileCard>
public TablerStatusIndicator StatusIndicator(Action<TablerStatusIndicator> config) #TablerStatusIndicatorParameters
- config Action<TablerStatusIndicator>
public TablerStatusStrip StatusStrip(Action<TablerStatusStrip> config) #TablerStatusStripParameters
- config Action<TablerStatusStrip>
public TablerSummaryStrip SummaryStrip(Action<TablerSummaryStrip> config) #TablerSummaryStripParameters
- config Action<TablerSummaryStrip>
public Table Table(Object objects, TableType tableType) #TableParameters
- objects IEnumerable<Object>
- tableType TableType
public TablerInput TablerInput(String name, Action<TablerInput> config = null) #TablerInputParameters
- name String
- config Action<TablerInput> = null
public TablerProgressBar TablerProgress(Action<TablerProgressBar> config) #TablerProgressBarParameters
- config Action<TablerProgressBar>
public TablerSelect TablerSelect(String name, Action<TablerSelect> config = null) #TablerSelectParameters
- name String
- config Action<TablerSelect> = null
public TablerSteps TablerSteps(Action<TablerSteps> config) #TablerStepsParameters
- config Action<TablerSteps>
public TablerTextarea TablerTextarea(String name, Action<TablerTextarea> config = null) #TablerTextareaParameters
- name String
- config Action<TablerTextarea> = null
public TablerTableSummaryCard TableSummaryCard(Action<TablerTableSummaryCard> config) #TablerTableSummaryCardParameters
- config Action<TablerTableSummaryCard>
public TablerTabs Tabs(Action<TablerTabs> config) #TablerTabsParameters
- config Action<TablerTabs>
public TablerTags Tags(Action<TablerTags> config) #TablerTagsParameters
- config Action<TablerTags>
public TablerTaskList Tasks(Action<TablerTaskList> config) #TablerTaskListParameters
- config Action<TablerTaskList>
public TablerText Text() #TablerTextParameters
- content String
- color RGBColor = null
- fontSize String = null
public TablerTimeline Timeline(Action<TablerTimeline> config) #TablerTimelineParameters
- config Action<TablerTimeline>
public TablerTimelineSummaryCard TimelineSummaryCard(Action<TablerTimelineSummaryCard> config) #TablerTimelineSummaryCardParameters
- config Action<TablerTimelineSummaryCard>
public TablerToast Toast(Action<TablerToast> config) #TablerToastParameters
- title String
- message String
- type TablerToastType = Default
public TablerTrackingSummaryCard TrackingSummaryCard(Action<TablerTrackingSummaryCard> config) #TablerTrackingSummaryCardParameters
- config Action<TablerTrackingSummaryCard>
public TablerVectorMapCard VectorMapCard(Action<TablerVectorMapCard> config) #TablerVectorMapCardParameters
- config Action<TablerVectorMapCard>
public TablerWorkflowStepsCard WorkflowStepsCard(Action<TablerWorkflowStepsCard> config) #TablerWorkflowStepsCardParameters
- config Action<TablerWorkflowStepsCard>
public TablerWorkflowSummaryCard WorkflowSummaryCard(Action<TablerWorkflowSummaryCard> config) #TablerWorkflowSummaryCardParameters
- config Action<TablerWorkflowSummaryCard>
Properties
public String Id { get; set; } #Gets or sets the DOM element identifier for the chart container.
public ApexChartType Type { get; set; } #Gets or sets the type of chart to render.
public List<Double> Series { get; set; } #Gets the numeric data series used by most chart types.
public List<String> Labels { get; set; } #Gets the labels associated with Series values.
public List<ApexHeatmapSeries> HeatmapSeries { get; set; } #Gets the heatmap specific series collection.
public List<ApexSeriesData> MultipleSeries { get; set; } #Gets the multi-series data collection for charts like Line, Column, etc.
public List<ApexCandlestickSeries> CandlestickSeries { get; set; } #Gets the candlestick specific series collection.
public List<ApexBubbleSeries> BubbleSeries { get; set; } #Gets the bubble specific series collection.
public List<ApexBoxPlotSeries> BoxPlotSeries { get; set; } #Gets the boxplot specific series collection.
public ApexChartsTitle Title { get; set; } #Gets or sets the title configuration for the chart.
public ApexChartSubtitle Subtitle { get; set; } #Gets the subtitle configuration.
public Dictionary<String, Object> Options { get; set; } #Gets additional options passed directly to ApexCharts.
Inherited Properties
Fields
Extension Methods
public static ApexCharts Title(ApexCharts chart, String text) #ApexChartsSets the main chart title text (mirrors ChartJs.Title.Text("…")).
Parameters
- chart HtmlForgeX.ApexCharts
- text System.String