Show / Hide Table of Contents

Class ChartDataColumn

A data series specific to a particular link output field.

Inheritance
object
AbstractColumn
ChartDataColumn
Inherited Members
AbstractColumn.DisplayName
AbstractColumn.SubSystem
AbstractColumn.Values
AbstractColumn.IsListOfValues
AbstractColumn.IsMultiValued
AbstractColumn.IsCaseSensitive
AbstractColumn.IsGroupable
AbstractColumn.IsEvaluable
AbstractColumn.IsHidden
AbstractColumn.ValueType
AbstractColumn.OriginalDisplayName
AbstractColumn.InternalName
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.LoganalyticsService.Models
Assembly: OCI.DotNetSDK.Loganalytics.dll
Syntax
public class ChartDataColumn : AbstractColumn

Properties

DataItems

Declaration
[JsonProperty(PropertyName = "dataItems")]
public List<object> DataItems { get; set; }
Property Value
Type Description
List<object>

Data points for each timestamp for a specific link field un-filtered.

FilteredDataItems

Declaration
[JsonProperty(PropertyName = "filteredDataItems")]
public List<object> FilteredDataItems { get; set; }
Property Value
Type Description
List<object>

Data points filtered by query string. May not contain data points for each timestamp due to filtering.

In this article
Back to top