Category Trends Component
The CategoryTrendsComponent shows the user's spend across different categories both in a chart, and in a list of category tiles. It allows users to filter data by dates too.
Usage
- SwiftUI
- Objective-C
SwiftUI
To use this view in a SwiftUI project, just call the CategoryTrendsComponent method of your LuneSDKManager instance as shown in the example below.
Trends.Swift
import SwiftUI
import LuneSDK
struct TrendView: View {
// removed for simplicity...
var body: some View {
luneSDK.CategoryTrendsComponent()
}
}
Objective-C
To use this view in an Objective-C project, just call the CategoryTrendsComponent method of your LuneSDKObjcManager instance as shown in the example below.
YourViewController.m
- (void)viewDidLoad {
[super viewDidLoad];
// category trends setup, after initilizing luneSDK
UIViewController *hostingController = [self.luneSDK
CategoryTrendsComponentWithConfig:nil];
[self addChildViewController:hostingController];
[self.view addSubview:hostingController.view];
// constraints setup removed for simplicity...
}
Localization Keys and Analytics Tags
Analytics Tags Localization Keys
![]() | Analytics Tags
Localization Keys
|
![]() | Analytics Tags
Localization Keys
|

