# Pull Request
## Description
## Type of Change
- [ ] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
- [ ] Documentation update
- [ ] Performance improvement
- [ ] Code refactoring
- [ ] Test improvements
- [ ] CI/CD improvements
## Chart Types Affected
- [ ] Line Chart
- [ ] Bar Chart
- [ ] Pie Chart
- [ ] Scatter Chart
- [ ] Gauge Chart
- [ ] Stacked Charts
- [ ] Custom Charts
- [ ] Not chart-specific
## Target Environment
- [ ] std (desktop/server)
- [ ] no_std (embedded)
- [ ] small-mcu (<64KB RAM)
- [ ] medium-mcu (128-512KB RAM)
- [ ] large-mcu (>512KB RAM)
## Testing
- [ ] All existing tests pass
- [ ] Added new tests for the changes
- [ ] Tested with different feature combinations
- [ ] Tested on target hardware (if applicable)
- [ ] Examples still compile and run correctly
### Test Commands Run
```bash
# List the commands you used to test your changes
cargo test
cargo test --all-features
cargo build --examples
# Add any specific test commands here
```
## Performance Impact
- [ ] No performance impact
- [ ] Performance improvement
- [ ] Minor performance regression (justified)
- [ ] Significant performance change (please explain)
**Performance notes:**
## Memory Impact
- [ ] No memory impact
- [ ] Reduced memory usage
- [ ] Increased memory usage (please justify)
**Memory notes:**
## Breaking Changes
- [ ] This PR introduces breaking changes
**Migration guide:**
## Documentation
- [ ] Updated inline documentation (doc comments)
- [ ] Updated README.md (if applicable)
- [ ] Updated examples (if applicable)
- [ ] Updated CHANGELOG.md (if applicable)
## Code Quality
- [ ] Code follows the project's style guidelines
- [ ] Self-review of the code has been performed
- [ ] Code is properly commented, particularly in hard-to-understand areas
- [ ] No new compiler warnings introduced
- [ ] `cargo fmt` has been run
- [ ] `cargo clippy` passes without warnings
## Examples
```rust
// Example usage of new functionality
use embedded_charts::prelude::*;
// Your example code here
```
## Related Issues
Fixes #(issue number)
Closes #(issue number)
Related to #(issue number)
## Additional Notes
## Checklist
- [ ] I have read the [CONTRIBUTING](CONTRIBUTING.md) guidelines
- [ ] My code follows the code style of this project
- [ ] I have added tests that prove my fix is effective or that my feature works
- [ ] All new and existing tests pass
- [ ] I have updated the documentation accordingly
- [ ] I have added an entry to CHANGELOG.md (if applicable)
## Screenshots (if applicable)
## Reviewer Notes
---
**For Maintainers:**
- [ ] Reviewed for security implications
- [ ] Reviewed for API consistency
- [ ] Reviewed for documentation completeness
- [ ] Considered impact on different MCU targets
- [ ] Verified examples still work