Go to most recent revision |
Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 28468 |
tejbeer |
1 |
package com.spice.profitmandi.service;
|
|
|
2 |
|
|
|
3 |
import java.util.List;
|
|
|
4 |
import java.util.Map;
|
|
|
5 |
|
|
|
6 |
import org.springframework.stereotype.Service;
|
|
|
7 |
|
|
|
8 |
import com.spice.profitmandi.common.model.ChartModel;
|
|
|
9 |
|
|
|
10 |
@Service
|
|
|
11 |
public interface ChartService {
|
|
|
12 |
|
|
|
13 |
public ChartModel createChart(int monthValue,
|
|
|
14 |
Map<String, List<Double>> sortedBrandValue, List<String> colorList,
|
|
|
15 |
List<String> borderList, String title);
|
|
|
16 |
|
|
|
17 |
}
|