Table of Contents

Class DefaultMyPage

Namespace
Dynamicweb.Ecommerce.Statistics
Assembly
Dynamicweb.Ecommerce.dll
Class contains functions for Order profit statistics handling.
[AddInName("Default MyPage")]
[AddInDescription("Displays an overview of orders processed through your Dynamicweb eCommerce")]
[AddInGroup("MyPage")]
public class DefaultMyPage : StatisticsProvider, IDropDownOptions
Inheritance
DefaultMyPage
Implements
Inherited Members

Properties

ColorColumn

Gets the color column name.
public override string ColorColumn { get; }

Property Value

string

Currency

Gets or sets current currency value.
[AddInParameter("Currency")]
[AddInParameterEditor(typeof(DropDownParameterEditor), "none=false;tdwidth=100;SortBy=Value")]
public string Currency { get; set; }

Property Value

string

Data

Gets the data table.
public override DataTable Data { get; }

Property Value

DataTable

DataList

Gets the data list.
public override DataTable DataList { get; }

Property Value

DataTable

DateFrom

Gets or sets start date value for statistics viewing period.
[AddInParameter("Date from")]
[AddInParameterEditor(typeof(DateTimeParameterEditor), "tdwidth=100")]
public DateTime DateFrom { get; set; }

Property Value

DateTime

DateTo

Gets or sets end date value for statistics viewing period.
[AddInParameter("Date to")]
[AddInParameterEditor(typeof(DateTimeParameterEditor), "tdwidth=100")]
public DateTime DateTo { get; set; }

Property Value

DateTime

Shop

Gets or sets shop value for statistics filter.
[AddInParameter("Shop")]
[AddInParameterEditor(typeof(DropDownParameterEditor), "nonetext=Alle;tdwidth=100;SortBy=Value")]
public string Shop { get; set; }

Property Value

string

StatisticCurrency

Gets or sets the statistic currency.
public override Currency StatisticCurrency { get; set; }

Property Value

Currency

Url

public override string Url { get; }

Property Value

string

XAxisColumn

Gets the X-axis column name.
public override string XAxisColumn { get; }

Property Value

string

YAxisColumn

Gets the Y-axis column name.
public override string YAxisColumn { get; }

Property Value

string

Methods

GetOptions(string)

Implements IDropDownOptions.GetOptions method, and used for DropDownLists control.
public Hashtable GetOptions(string name)

Parameters

name string

Returns

Hashtable
Hashtable with specified control options.
To top