0.0.2 • Published 2 months ago

@zbt123/detail-data-bar-chart v0.0.2

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
2 months ago

LI Analysis Assets

Assets for Location Insight App

Usage

import React from 'react';
import CoreAssets from '@antv/li-core-assets';
import AnalysisAssets from '@antv/li-analysis-assets';
import { LocationInsightEditor } from '@antv/li-editor';
import defaultApplication from './application';

const assets = [CoreAssets, AnalysisAssets];

export default () => {
  return (
    <LocationInsightEditor
      style={{ height: '100vh' }}
      defaultApplication={defaultApplication}
      assets={assets}
      onChange={(app) => {}}
    />
  );
};