Subversion Repositories SmartDukaan

Rev

Rev 28468 | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed

package com.spice.profitmandi.service;

import com.spice.profitmandi.common.model.ChartModel;
import org.springframework.stereotype.Service;

import java.util.LinkedHashSet;
import java.util.List;
import java.util.Map;

@Service
public interface ChartService {

        ChartModel createChart(int monthValue,
                                                   Map<String, List<Double>> sortedBrandValue, List<String> colorList,
                                                   List<String> borderList, String title);

        ChartModel createChartWithLabels(LinkedHashSet<String> labels, Map<String, List<Double>> sortedBrandValue, List<String> colorList, List<String> borderList, String title);
}