John Huang
John Huang
Simple to reproduce. In the demo app, in ViewController.m, add the following method: - (CGSize)collectionView:(UICollectionView _)collectionView layout:(UICollectionViewLayout_)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath { return CGSizeMake(indexPath.row == 0 ? 200 : 100, 100); }...
In the demo project, add the following code to LXCollectionViewController.m - (CGSize)collectionView:(UICollectionView _)collectionView layout:(UICollectionViewLayout_)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath { return CGSizeMake(indexPath.row == 0 ? 200 : 100, 100); } The resulted screen...
See screenshot. The width is fixed at 320 and does not adjust to the width. I think the proper way is to use whatever width the view has, and calculate...
### Prerequisites - [X] I am running the [latest CosmPy version](https://docs.fetch.ai/CosmPy/#version). - [X] I checked the [documentation](http://docs.fetch.ai/CosmPy/) and found no answer to my problem. - [X] I checked the [existing...
I have successfully overlaid candles with an area chart, so it is probably possible to overlay candles with volume (bar) chart. Howe er, they are on the same pricing scale,...