Table of Contents

Class Payment

Namespace
Dynamicweb.Ecommerce.Statistics
Assembly
Dynamicweb.Ecommerce.dll
Represents the payment statistics.
[AddInName("Payment")]
[AddInDescription("Shows the payment total in a specified period")]
[AddInGroup("Orders")]
[AddInImage("tree/btn_payment.png")]
public class Payment : StatisticsProvider, IDropDownOptions
Inheritance
Payment
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")]
public string Currency { get; set; }

Property Value

string

Data

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

Property Value

DataTable

DateFrom

Gets or sets start date value for statistics viewing period.
[AddInParameter("Date from")]
[AddInParameterEditor(typeof(DateTimeParameterEditor), "")]
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), "")]
public DateTime DateTo { get; set; }

Property Value

DateTime

DefaultGraph

Gets the default graph type.
public override GraphType DefaultGraph { get; }

Property Value

GraphType

Prefix

Gets the prefix.
public override string Prefix { get; }

Property Value

string

Shop

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

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