chore: Adds theme object to chart properties (#19951)

This commit is contained in:
Michael S. Molina
2022-05-04 09:55:22 -03:00
committed by GitHub
parent 5dd3ea154b
commit e9032e95ec
19 changed files with 77 additions and 26 deletions

View File

@@ -16,7 +16,7 @@
* specific language governing permissions and limitations
* under the License.
*/
import { ChartProps } from '@superset-ui/core';
import { ChartProps, supersetTheme } from '@superset-ui/core';
import transformProps from '../../src/Graph/transformProps';
import { DEFAULT_GRAPH_SERIES_OPTION } from '../../src/Graph/constants';
@@ -53,6 +53,7 @@ describe('EchartsGraph transformProps', () => {
width: 800,
height: 600,
queriesData,
theme: supersetTheme,
};
const chartProps = new ChartProps(chartPropsConfig);
@@ -192,6 +193,7 @@ describe('EchartsGraph transformProps', () => {
width: 800,
height: 600,
queriesData,
theme: supersetTheme,
};
const chartProps = new ChartProps(chartPropsConfig);