| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- /**
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- import { ChartDataResponseResult, VizType } from '@superset-ui/core';
- import { GenericDataType } from '@apache-superset/core/api/core';
- import {
- TableChartFormData,
- TableChartProps,
- } from '@superset-ui/plugin-chart-table';
- // @ts-ignore
- // eslint-disable-next-line import/extensions
- import birthNamesJson from './birthNames.json';
- export const birthNames = birthNamesJson as unknown as TableChartProps;
- export const basicFormData: TableChartFormData = {
- datasource: '1__table',
- viz_type: VizType.Table,
- align_pn: false,
- color_pn: false,
- include_search: true,
- metrics: ['sum__num', 'MAX(ds)'],
- order_desc: true,
- page_length: 0,
- percent_metrics: null,
- show_cell_bars: true,
- table_filter: false,
- table_timestamp_format: 'smart_date',
- };
- export const basicData: Partial<ChartDataResponseResult> = {
- colnames: ['name', 'sum__num', 'MAX(ds)', 'Abc.com'],
- coltypes: [
- GenericDataType.String,
- GenericDataType.Numeric,
- GenericDataType.Temporal,
- GenericDataType.String,
- ],
- data: [
- {
- name: 'Michael',
- sum__num: 2467063,
- 'MAX(ds)': '2008-01-01T00:00:00',
- 'Abc.com': 110,
- },
- {
- name: 'Christopher',
- sum__num: 1725265,
- 'MAX(ds)': '2008-01-01T00:00:00',
- 'Abc.com': 119,
- },
- {
- name: 'David',
- sum__num: 1570516,
- 'MAX(ds)': '2008-01-01T00:00:00',
- 'Abc.com': 120,
- },
- {
- name: 'James',
- sum__num: 1506025,
- 'MAX(ds)': '2008-01-01T00:00:00',
- 'Abc.com': 120,
- },
- {
- name: 'John',
- sum__num: 1426074,
- 'MAX(ds)': '2008-01-01T00:00:00',
- 'Abc.com': 120,
- },
- {
- name: 'Matthew',
- sum__num: 1355803,
- 'MAX(ds)': '2008-01-01T00:00:00',
- 'Abc.com': 120,
- },
- {
- name: 'Robert',
- sum__num: 1314800,
- 'MAX(ds)': '2008-01-01T00:00:00',
- 'Abc.com': 120,
- },
- {
- name: 'Daniel',
- sum__num: 1159354,
- 'MAX(ds)': '2008-01-01T00:00:00',
- 'Abc.com': 120,
- },
- {
- name: 'Joseph',
- sum__num: 1114098,
- 'MAX(ds)': '2008-01-01T00:00:00',
- 'Abc.com': 120,
- },
- {
- name: 'William',
- sum__num: 1113701,
- 'MAX(ds)': '2008-01-01T00:00:00',
- 'Abc.com': 120,
- },
- ],
- };
|