MCPcopy
hub / github.com/deepops-ai/deepops / SeriesData

Interface SeriesData

ui/src/types/seriesData.ts:13–25  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11// See the License for the specific language governing permissions and
12// limitations under the License.
13export interface SeriesData {
14 id?: number;
15 name?: string;
16 fields: Field[]; // All fields of equal length
17
18 // The number of rows
19 length?: number;
20
21 // series color showing in graph
22 color?: string
23
24 rawName?: string // used for name override
25}
26
27export enum FieldType {
28 Time = 'time', // or date

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected