| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- /**
- * 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.
- */
- export const simpleBubbleData = [
- {
- customer_name: 'AV Stores, Co.',
- count: 51,
- 'SUM(price_each)': 3975.33,
- 'SUM(sales)': 157807.80999999997,
- },
- {
- customer_name: 'Alpha Cognac',
- count: 20,
- 'SUM(price_each)': 1701.95,
- 'SUM(sales)': 70488.44,
- },
- {
- customer_name: 'Amica Models & Co.',
- count: 26,
- 'SUM(price_each)': 2218.41,
- 'SUM(sales)': 94117.26000000002,
- },
- {
- customer_name: "Anna's Decorations, Ltd",
- count: 46,
- 'SUM(price_each)': 3843.67,
- 'SUM(sales)': 153996.13000000003,
- },
- {
- customer_name: 'Atelier graphique',
- count: 7,
- 'SUM(price_each)': 558.4300000000001,
- 'SUM(sales)': 24179.96,
- },
- {
- customer_name: 'Australian Collectables, Ltd',
- count: 23,
- 'SUM(price_each)': 1809.7099999999998,
- 'SUM(sales)': 64591.46000000001,
- },
- {
- customer_name: 'Australian Collectors, Co.',
- count: 55,
- 'SUM(price_each)': 4714.479999999999,
- 'SUM(sales)': 200995.40999999997,
- },
- {
- customer_name: 'Australian Gift Network, Co',
- count: 15,
- 'SUM(price_each)': 1271.05,
- 'SUM(sales)': 59469.11999999999,
- },
- {
- customer_name: 'Auto Assoc. & Cie.',
- count: 18,
- 'SUM(price_each)': 1484.8600000000001,
- 'SUM(sales)': 64834.32000000001,
- },
- {
- customer_name: 'Auto Canal Petit',
- count: 27,
- 'SUM(price_each)': 2188.82,
- 'SUM(sales)': 93170.65999999999,
- },
- ];
|