summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/projects/pipelines/charts/components/pipelines_area_chart.vue
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/projects/pipelines/charts/components/pipelines_area_chart.vue')
-rw-r--r--app/assets/javascripts/projects/pipelines/charts/components/pipelines_area_chart.vue46
1 files changed, 0 insertions, 46 deletions
diff --git a/app/assets/javascripts/projects/pipelines/charts/components/pipelines_area_chart.vue b/app/assets/javascripts/projects/pipelines/charts/components/pipelines_area_chart.vue
deleted file mode 100644
index d726196aadf..00000000000
--- a/app/assets/javascripts/projects/pipelines/charts/components/pipelines_area_chart.vue
+++ /dev/null
@@ -1,46 +0,0 @@
-<script>
-import { GlAreaChart } from '@gitlab/ui/dist/charts';
-import { s__ } from '~/locale';
-import ResizableChartContainer from '~/vue_shared/components/resizable_chart/resizable_chart_container.vue';
-import { CHART_CONTAINER_HEIGHT } from '../constants';
-
-export default {
- components: {
- GlAreaChart,
- ResizableChartContainer,
- },
- props: {
- chartData: {
- type: Array,
- required: true,
- },
- },
- areaChartOptions: {
- xAxis: {
- name: s__('Pipeline|Date'),
- type: 'category',
- },
- yAxis: {
- name: s__('Pipeline|Pipelines'),
- },
- },
- chartContainerHeight: CHART_CONTAINER_HEIGHT,
-};
-</script>
-<template>
- <div class="gl-mt-3">
- <p>
- <slot></slot>
- </p>
- <resizable-chart-container>
- <gl-area-chart
- slot-scope="{ width }"
- :width="width"
- :height="$options.chartContainerHeight"
- :data="chartData"
- :include-legend-avg-max="false"
- :option="$options.areaChartOptions"
- />
- </resizable-chart-container>
- </div>
-</template>